GET api/webhook/list?triggerFilterName={triggerFilterName}

Lists all of the webhooks currently set up. Processes this webhook API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
triggerFilterName

Optionally, filter results that match this trigger. If blank, do not filter results.

string

Default value is

Body Parameters

None.

Response Information

Resource Description

A list of webhooks

Collection of WebhookQueryDataContract
NameDescriptionTypeAdditional information
TriggerName

The trigger name value.

string

None.

WebhookUrl

The webhook url value.

string

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TriggerName": "sample string 1",
    "WebhookUrl": "sample string 2",
    "Id": 3
  },
  {
    "TriggerName": "sample string 1",
    "WebhookUrl": "sample string 2",
    "Id": 3
  }
]