v1
latestOpenAPI 3.0.32026-07-242644125.9 KBWebhooks
Create Webhook
Registers a new webhook URL to receive notifications for verification events. Users can optionally specify which events to subscribe to using the 'events' array. Supports verification.completed (when verification finishes) and verification.historical (when historical employment data becomes available) events. If events are not specified, the webhook subscribes to all available events by default.
post/webhooks
Request body
Example request
{
"description": "Production verification notifications",
"endpoint_url": "https://yourapi.com/webhook/handler",
"events": [
"verification.completed",
"verification.historical"
]
}Response
Webhook created successfully.
Example response
{
"events": [
"verification.completed",
"verification.historical"
]
}