Skip to content

Bounce Webhook

POST
/api/outreach/webhooks/bounce
curl --request POST \
--url http://localhost:8000/api/outreach/webhooks/bounce \
--header 'Content-Type: application/json' \
--data '{ "event": "bounce", "hard": true, "message_id": "example" }'

Platform-authenticated bounce/complaint hook (spec §6.6).

Verified by a platform-global shared secret BEFORE any workspace is trusted. The message_id→workspace lookup spans tenants and runs on a dedicated owner connection (no GUC); the write then enters workspace_scope.

Media typeapplication/json
BounceEvent
object
event
Event
string
default: bounce
hard
Hard
boolean
default: true
message_id
required
Message Id
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}