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

Lists all of the webhooks currently set up.

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 Dezrez.Core.DataContracts.External.Api.Webhook.WebhookQueryDataContract
NameDescriptionTypeAdditional 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
  }
]