Webhook Configuration
Webhooks are configured through the Minteo Board UI. API-based configuration is not supported in v1.
Configuration URL
- Production
- Sandbox
Configure at: https://board.minteo.com/developers/hooks
Configure at: https://board.sandbox.minteo.com/developers/hooks
Setting up webhooks
- Navigate to the Developers section in Board
- Go to the Hooks tab
- Enter your webhook endpoint URL (must be HTTPS)
- Save the configuration
- Copy your webhook secret (you'll need it for signature verification)
Your webhook secret is shown in the Board and can be viewed at any time. Store it securely in your application (environment variables, secret manager).
Managing your configuration
Updating the webhook URL
To change your webhook endpoint:
- Go to the Hooks tab in Board
- Update the URL field
- Save the changes
URL changes take effect immediately. There is no URL change history.
Rotating the webhook secret
To rotate your secret:
- Go to the Hooks tab in Board
- Click "Rotate Secret"
- A new secret is generated immediately
- The old secret is moved to "Past Secrets" history
When you rotate the secret:
- The old secret expires immediately
- Existing events being retried continue using the old secret (snapshotted at event creation)
- New events use the new secret
Follow the recommended rotation process to avoid downtime.
Viewing past secrets
Past secrets are stored in Board for debugging and audit purposes. You can view:
- The secret value
- When it was created
- When it expired
- Who rotated it
Viewing webhook history
The Board provides a history view of all webhook deliveries:
- Go to the Developers section
- Navigate to the Hooks History tab
- View all delivery attempts, including:
- Event type
- HTTP status code
- Request and response bodies
- Retry attempts
- Timestamps
Webhook history is only available through the Board UI. It is not accessible via API in v1.
Separate configurations for Production and Sandbox
You can configure different webhook URLs for Production and Sandbox environments:
- Production: https://board.minteo.com/developers/hooks
- Sandbox: https://board.sandbox.minteo.com/developers/hooks
Each environment has its own:
- Webhook URL
- Webhook secret
- Delivery history