v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
Webhooks

Get a list of webhook configurations

This endpoint returns the list of webhook configurations.

get/webhooks

Query parameters

org_idinteger

Organization identifier, only required for PROVIDER users.

pageinteger

Page number. Starts at 1. Any value lower than 1 will be considered as 1. For the number of items per page, see the per_page query parameter.

per_pageinteger

Number of items to return per page. Currently limited to 100.

Response

OK

pageinteger

Current page number

max_pageinteger

Last page number

countinteger

Number of resources complying with filters

Example response

{
  "page": 1,
  "max_page": 10,
  "count": 287,
  "items": [
    {
      "id": 1,
      "url": "https://example.com/webhook",
      "event_type": "business_created",
      "created_at": "2024-11-27T16:10:44.929678Z",
      "updated_at": "2024-11-27T16:10:44.929678Z",
      "org_id": 1,
      "custom_headers": {
        "X-My-Header": "my-value",
        "X-Auth-Token": "secret-token"
      }
    }
  ]
}