4d95080d8ffb

OpenAPI 3.0.3Apache-2.02026-08-10130378638.8 KB
Webhooks

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>

get/v2/webhooks

Query parameters

org_idstring

A universally unique identifier (base64-encoded opaque string).

Example:RW50aXR5OjEyMzQ1

The unique organization identifier (base64). When provided, only resources belonging to this organization are returned.

namestring

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.

limitinteger

Maximum items to return

cursorstring

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"
    }
  ]
}