GET api/webhook/{webhookId}
Gets a webhook by its ID Processes this webhook API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| webhookId |
The webhook identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A webhook description
WebhookQueryDataContract| Name | Description | Type | Additional 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
}