GET api/webhooks
Get the list of subscribed webhooks
Request Information
URI Parameters
None.
Body Parameters
None
Response Information
Resource Description
Collection of WebhookSubscriptionName | Type | Description | Additional information |
---|---|---|---|
WebHookName | string |
|
|
Subscribed | boolean |
|
|
CallbackURL | string |
|
|
ModifiedUser | string |
|
|
ModifiedDateTime | date |
|
|
PerformanceInMS | integer |
|
|
ClientName | string |
|
Response Formats
application/json, text/json
Sample:
[ { "WebHookName": "sample string 1", "Subscribed": true, "CallbackURL": "sample string 3", "ModifiedUser": "sample string 4", "ModifiedDateTime": "2025-01-18T05:13:35.5056832+00:00", "PerformanceInMS": 6, "ClientName": "sample string 7" }, { "WebHookName": "sample string 1", "Subscribed": true, "CallbackURL": "sample string 3", "ModifiedUser": "sample string 4", "ModifiedDateTime": "2025-01-18T05:13:35.5056832+00:00", "PerformanceInMS": 6, "ClientName": "sample string 7" } ]
application/xml, text/xml
Sample:
<ArrayOfWebhookSubscription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <WebhookSubscription> <PerformanceInMS>6</PerformanceInMS> <ClientName>sample string 7</ClientName> <WebHookName>sample string 1</WebHookName> <Subscribed>true</Subscribed> <CallbackURL>sample string 3</CallbackURL> <ModifiedUser>sample string 4</ModifiedUser> <ModifiedDateTime>2025-01-18T05:13:35.5056832+00:00</ModifiedDateTime> </WebhookSubscription> <WebhookSubscription> <PerformanceInMS>6</PerformanceInMS> <ClientName>sample string 7</ClientName> <WebHookName>sample string 1</WebHookName> <Subscribed>true</Subscribed> <CallbackURL>sample string 3</CallbackURL> <ModifiedUser>sample string 4</ModifiedUser> <ModifiedDateTime>2025-01-18T05:13:35.5056832+00:00</ModifiedDateTime> </WebhookSubscription> </ArrayOfWebhookSubscription>