v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Webhooks

Update a Webhook Callback

Update a callback previously registered for webhooks

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage company resources (company_admin)-Manage webhooks (webhook:write)
patch/v1/webhook-callbacks/{id}

Path parameters

idstring required

Webhook Callback ID

Request body

subscribe_to_all_eventsboolean

When true, subscribe this callback to all current and future event types. Cannot be combined with subscribed_events.

subscribed_eventsstring[]
urlstring

Example request

{
  "subscribed_events": [
    "employment.onboarding_task.completed"
  ],
  "url": "https://example.com/callback"
}

Response

Success

Example response

{
  "data": {
    "webhook_callback": {
      "id": "0073fcb5-b669-4e4a-b963-2a47744e75a1",
      "subscribed_events": [
        "employment.onboarding_task.completed"
      ],
      "url": "https://example.com/callback"
    }
  }
}