Solution Overview for Business Users / Version 2506.0
Table Of Contents
You get all registered webhook subscriptions for a given environment and tenant using the request GET /<environment>.<tenant id>/config
The response body looks like below
{
"items": [
{
"id": "a324392a-8b69-4e1e-a72b-22a02d1291f8",
"tenantId": "<tenant id>",
"sourceId": "preview",
"description": "Customer ACME, sandbox first",
"namespace": "PUBLIC",
"subscriptionTypes": [
"CONTENT"
],
"enabled": true,
"endpoint": {
"endpointType": "WEBHOOK",
"url": "https://acme.com/firstsandbox/eventHubHookForContentEvents",
"method": "POST",
"authenticationMethod": {
"authenticationType": "BASIC_AUTH",
"username": "xxxxxxxx",
"password": "xxxxxxxx"
}
}
},
{
"id": "36e7d0cd-b8d4-42f8-89e8-e1af4b990e70",
"tenantId": "<tenant id>",
"sourceId": "preview",
"description": "Customer ACME, sandbox first",
"namespace": "PUBLIC",
"subscriptionTypes": [
"NOTIFICATION",
"WORKFLOW"
],
"enabled": true,
"endpoint": {
"endpointType": "WEBHOOK",
"url": "https://acme.com/firstsandbox/eventHubHookForNotificatonAndWorkflows",
"method": "POST",
"headerParameters": {
"Authorization": "xxxxxxxx"
}
}
}
]
}

