Reporting Webhooks
Create a reporting webhook
Create a new webhook configuration.
post/v1/reporting_webhooks
Request body
Example request
{
"name": "my cool webhook",
"id": 4,
"type": "webhook",
"endpoint": "https://example.com/webhook",
"full_resolution": true,
"events": [
"email_failed",
"webhook_failed"
]
}Response
Returns your webhook configuration and the ID of the webhook.
Example response
{
"name": "my cool webhook",
"id": 4,
"type": "webhook",
"endpoint": "https://example.com/webhook",
"full_resolution": true,
"events": [
"email_failed",
"webhook_failed"
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.