List webhooks
List the webhooks in the organizations the user has access to, most recently created first. Use org_id to narrow the list to a single organization; a 404 is returned only when the given org_id does not exist or is not accessible.
Webhooks used as monitor notification channels are included — a webhook is an organization-level destination regardless of what it is attached to.
<Warning>This endpoint is in alpha, read more here.</Warning>
Query parameters
A universally unique identifier (base64-encoded opaque string).
The unique organization identifier (base64). When provided, only resources belonging to this organization are returned.
Case-insensitive substring filter on the resource name. Returns only resources whose name contains the given string. For example, name=prod matches "production", "my-prod-dataset", etc. If omitted, no name filtering is applied and all resources are returned.
Maximum items to return
Opaque pagination cursor returned from a previous response (pagination.next_cursor). Treat it as an unreadable token; do not attempt to parse or construct it.
Response
Returns a list of webhook objects
Example response
{
"webhooks": [
{
"id": "RW50aXR5OjEyMzQ1",
"organization_id": "RW50aXR5OjEyMzQ1",
"created_by_user_id": "RW50aXR5OjEyMzQ1"
}
]
}