Webhook Subscriptions

List webhook subscriptions

Lists webhook subscriptions for the merchant with cursor-based pagination.

get/v1/webhook_subscriptions

Query parameters

limitinteger

Number of results per page (1-100). Defaults to 10.

cursorstring

Opaque cursor from a previous next_cursor.

Response

Paginated list of webhook subscriptions

has_moreboolean required
next_cursorstring nullable required

Example response

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440009",
      "url": "https://sandbox.example.com/webhooks/augustus",
      "events": [
        "payout.paid"
      ],
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2026-01-15T10:35:00Z"
    }
  ],
  "next_cursor": "eyJsYXN0X2lkIjoiNTUwZTg0MDAtZTI5Yi00MWQ0LWE3MTYtNDQ2NjU1NDQwMDA2In0"
}

Changes