Test Inbound Route Callback
Send a synthetic test event to a callback URL.
Send a synthetic test event to a callback URL to verify your inbound route integration.
Scope: domains.inbound_routing.write
Rate limit: 128 tests per day, per account.
Path Parameters
domain_idintegerrequiredThe ID of the domain.
Request Body
callback_urlstringrequiredA valid URL to test.
Response
resultobjectoptionalContains response_code (integer) and response_body (string) from the callback.
Sample Response
200 OK
{
"data": {
"result": {
"response_code": 200,
"response_body": "OK"
}
}
}