v1
latestOpenAPI 3.0.02026-08-0679302767.4 KBWebhooks
Retrieve all registered webhooks
Retrieve all webhooks registered for the organization, including basic configuration details. Sensitive information like oauth_configuration will be masked in the response.
get/v2/webhooks
Headers
organization-idstring
Response
List of registered webhooks retrieved successfully
Example response
[
{
"url": "https://yourdomain.com/webhook-endpoint",
"description": "Provider Created Webhook",
"headers": {
"X-Api-Key": "****"
},
"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"
}
}
}
]