DELETE api/webhooks/{WebhookName}

Remove a webhook subscription

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": "2024-10-21T11:43:57.4563247+00:00",
  "PerformanceInMS": 6,
  "ClientName": "sample string 7"
}

application/xml, text/xml

Sample:
<WebhookSubscription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <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>2024-10-21T11:43:57.4563247+00:00</ModifiedDateTime>
</WebhookSubscription>