v1
latestOpenAPI 3.1.02026-07-242735131.1 MBWebhooks
Create a Webhook Callback
Register a callback to be used for webhooks
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (company_admin) | - | Manage webhooks (webhook:write) |
post/v1/webhook-callbacks
Headers
Authorizationstring required
This endpoint works with any of the access tokens provided. You can use an access token obtained through the Client Credentials flow, the Authorization Code flow, or the Refresh Token flow.
Request body
Example request
{
"subscribe_to_all_events": true,
"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"
}
}
}