List Webhooks
List configured webhooks for the account.
List all configured webhooks for the account. Each webhook includes its callback URL, associated domains, and subscribed event types.
Scope: webhooks.read
Response
Returns an array of webhook objects, each with id, callback_url, domains, and event_types.
Sample Response
200 OK
{
"data": [
{
"id": "wh_abc",
"callback_url": "https://example.com/hook",
"domains": [123],
"event_types": ["delivered", "bounced"]
}
]
}