v1
latestOpenAPI 3.1.02026-07-242735131.1 MBWebhooks
Update a Webhook Callback
Update a callback previously registered for webhooks
Scopes
| Category | Read only Scope | Write 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
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"
}
}
}