v1

latestOpenAPI 3.0.3Proprietary2026-07-244065126.5 KB
Webhooks

List Webhooks

List all webhooks belonging to the authenticated user's API key. Supports optional filtering by event_type, active, and is_test query parameters.

get/api/v2/webhooks

Query parameters

activeboolean

Filter by active status.

event_typestring

Filter by event type.

is_testboolean

Filter by test flag.

limitinteger

Number of results to return per page.

offsetinteger

The initial index from which to return the results.

Response

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}