GET api/webhooks/{webhookName}
Get a webhook subscription by name
Request Information
URI Parameters
| Name | Type | Description | Additional information | 
|---|---|---|---|
| webhookName | string | 
                                 Required  | 
                
Body Parameters
None
Response Information
Resource Description
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:23.2215542+00:00",
  "PerformanceInMS": 6,
  "ClientName": "sample string 7"
}
        application/xml, text/xml
            Sample:
<WebhookSubscription xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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:23.2215542+00:00</ModifiedDateTime> </WebhookSubscription>