Skip to main content
GET
/
v1
/
public
/
webhook
/
subscriptions
List subscriptions
curl --request GET \
  --url https://api.example.com/v1/public/webhook/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "6a27a76692d9e3a8ffd7e62d",
      "organization_id": "ddd6f1d8-b232-497e-bf1e-ea7317622d17",
      "scope": "ORGANIZATION",
      "created_user_id": "google-oauth2|101090478854418701727",
      "name": "Payment Events Webhook",
      "url": "https://api.example.com/webhooks/payments",
      "events": [],
      "active": true,
      "request_timeout_ms": 1000,
      "retry_policy": {
        "retryStrategy": "FIXED_DELAY",
        "maxRetryAttempts": 3,
        "maxRetryDelayMs": 10000
      },
      "signing_enabled": true,
      "created_at": "2026-06-09T10:15:00.000Z",
      "updated_at": "2026-06-09T10:15:00.000Z"
    }
  ],
  "next_page_token": null,
  "total_count": 1
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header: Authorization: Bearer <YOUR_API_KEY>.

Query Parameters

page_size
integer
required

Max items per page, 1-100. Omitting it returns 400; a value > 100 returns 400.

Required range: 1 <= x <= 100
page_token
string | null

Cursor from a previous response's next_page_token; omit for the first page.

Response

OK.

data
WebhookSubscriptionResponse · object[]

Page of subscription objects (no secret).

next_page_token
string | null

Cursor for the next page; null on the last page.

total_count
integer

Total subscriptions matching the query.

Example:

1