v8

latestOpenAPI 3.0.3raw.githubusercontent.com2026-05-2526602.8 MB
Webhooks

Update Webhook

Update an existing webhook

put/api/webhooks/{webhook_id}

Request body

endpoint_urlstring required

The URL of your webhook endpoint.

eventsstring[] required

An array of webhook events to subscribe to. For all options, refer to our List Available Events endpoint.

enabledboolean nullable

Optionally, enabled/disable the webhook. This will stop/resume the sending of events, without having to delete the webhook.

account_scopestring required

The account scope for the webhook. Use "global" for all accounts, "inclusive" for only selected accounts, or "exclusive" for all except selected accounts.

account_idsstring[]

An array of account IDs to apply the scope to. Required unless account_scope is "global".

Example request

{
  "endpoint_url": "https://example.com",
  "events": [
    "accounts.connected",
    "subscriptions.new"
  ],
  "enabled": true,
  "account_scope": "global",
  "account_ids": [
    "ac_abc123"
  ]
}

Response

Example response

{
  "data": {
    "id": "wh_abc123",
    "url": "https://example.com",
    "events": [
      "accounts.connected",
      "subscriptions.new"
    ],
    "has_signing_secret": true,
    "enabled": false,
    "created_at": "2025-01-01T00:00:00.000000Z"
  },
  "_meta": {
    "_credits": {
      "used": 0,
      "balance": 1000000016,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 996,
      "remaining_day": 49990
    }
  }
}