Message Bounced
Webhook event payload for `message.bounced`.
Delivery
Webhook deliveries are signed with Svix headers:
svix-idsvix-timestampsvix-signature
Event Type
message.bounced
Payload Schema
{
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"event"
]
},
"event_type": {
"type": "string",
"enum": [
"message.bounced"
]
},
"event_id": {
"$ref": "#/components/schemas/type_events:EventId"
},
"bounce": {
"$ref": "#/components/schemas/type_events:Bounce"
}
},
"required": [
"type",
"event_type",
"event_id",
"bounce"
],
"title": "MessageBouncedEvent"
}Example Payload
{
"bounce": {
"inbox_id": "<string>",
"message_id": "<string>",
"recipients": [
{
"address": "<string>",
"status": "<string>"
}
],
"sub_type": "<string>",
"thread_id": "<string>",
"timestamp": "2026-01-01T00:00:00Z",
"type": "<string>"
},
"event_id": "<string>",
"event_type": "message.bounced",
"type": "event"
}