GET api/v1/Webhooks/Events
Gets all supported webhook events which can be subscripted to
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of supported webhook events
Collection of WebhookEventName | Description | Type | Additional information |
---|---|---|---|
Description | string |
None. |
|
DisplayName | string |
None. |
|
Id | globally unique identifier |
None. |
|
Name | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Description": "sample string 1", "DisplayName": "sample string 2", "Id": "34f525f3-3cfd-4325-bb42-03000c2d69c9", "Name": "sample string 4" }, { "Description": "sample string 1", "DisplayName": "sample string 2", "Id": "34f525f3-3cfd-4325-bb42-03000c2d69c9", "Name": "sample string 4" } ]
application/xml, text/xml
Sample:
<ArrayOfWebhookEvent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus.webhookservicews.Responses"> <WebhookEvent> <Description>sample string 1</Description> <DisplayName>sample string 2</DisplayName> <Id>34f525f3-3cfd-4325-bb42-03000c2d69c9</Id> <Name>sample string 4</Name> </WebhookEvent> <WebhookEvent> <Description>sample string 1</Description> <DisplayName>sample string 2</DisplayName> <Id>34f525f3-3cfd-4325-bb42-03000c2d69c9</Id> <Name>sample string 4</Name> </WebhookEvent> </ArrayOfWebhookEvent>