v1
latestOpenAPI 3.0.02026-08-0679302767.4 KBWebhooks
Register Webhook (Credentialing Events)
Register a webhook for credentialing events of a provider. If headers are included, they will be sent with every request. If oauth_configuration is set, the token_url will be called with client_id and client_secret and a form urlencoded POST request to generate an access token. The response includes the webhook ID and configuration details.
post/v2/webhooks
Headers
organization-idstring
Request body
Example request
{
"url": "https://yourdomain.com/webhook-endpoint",
"description": "Provider Created Webhook",
"headers": {
"X-Api-Key": "abcdef123456"
},
"oauth_configuration": {
"client_id": "my-client-id",
"client_secret": "my-client-secret",
"token_url": "https://auth.example.com/oauth/token",
"scope": "resource.read",
"headers": {
"X-Domain-Name": "example.com"
}
}
}Response
Webhook Created Successfully