GET api/webhooks
Get the list of subscribed webhooks
Request Information
URI Parameters
None.
Body Parameters
None
Response Information
Resource Description
Collection of WebhookSubscription| Name | 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-11-04T04:28:22.4714688+00:00",
    "PerformanceInMS": 6,
    "ClientName": "sample string 7"
  },
  {
    "WebHookName": "sample string 1",
    "Subscribed": true,
    "CallbackURL": "sample string 3",
    "ModifiedUser": "sample string 4",
    "ModifiedDateTime": "2025-11-04T04:28:22.4714688+00:00",
    "PerformanceInMS": 6,
    "ClientName": "sample string 7"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfWebhookSubscription xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <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-11-04T04:28:22.4714688+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-11-04T04:28:22.4714688+00:00</ModifiedDateTime>
  </WebhookSubscription>
</ArrayOfWebhookSubscription>