GET api/webhook/list?triggerFilterName={triggerFilterName}
Lists all of the webhooks currently set up.
Request Information
URI Parameters
| Name | Description | Type | Additional 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| Name | Description | Type | Additional information |
|---|---|---|---|
| TriggerName | string |
None. |
|
| WebhookUrl | string |
None. |
|
| Id | 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
}
]