Reporting Webhooks
Update a webhook configuration
Update the configuration of a reporting webhook. Turn events on or off, change the webhook URL, etc.
put/v1/reporting_webhooks/{webhook_id}
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.