List Webhooks
GET
/api/v2/webhooks
The List Webhooks endpoint retrieves a list of all configured webhooks, including their event types, URLs, creation timestamps, and last modified timestamps.
Response
{
"status": "success",
"data": [
{
"id": "01954751-cccd-709a-baee-ee3ddac37e39",
"business_id": "06790d62-07e5-7aac-8000-d0462f2c2d94",
"event_type": "travel_rule",
"webhook_url": "https://example.com/api/webhook",
"event_names": null,
"webhook_desc": "Webhook that pushes updates from Travel Rule module",
"modified_by": "John Doe",
"last_modified": "2025-02-26T21:57:18.000+08:00",
"ip_allowlist": null
}
]
}
Last updated