GET api/v1/Webhooks/Subscriptions/{id}
Gets webhook subscription information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Webhook subscription information
Subscription| Name | Description | Type | Additional information |
|---|---|---|---|
| Counter | integer |
None. |
|
| CustomHeader | string |
None. |
|
| EndDateUtc | date |
None. |
|
| JsonPathFilter | string |
None. |
|
| SignKey | string |
None. |
|
| StartDateUtc | date |
None. |
|
| State | SubscriptionState |
None. |
|
| SubscriptionId | globally unique identifier |
None. |
|
| TargetEndpointUri | string |
None. |
|
| WebhookEventId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Counter": 1,
"CustomHeader": "sample string 2",
"EndDateUtc": "2025-12-04T03:11:35.9436215+02:00",
"JsonPathFilter": "sample string 4",
"SignKey": "sample string 5",
"StartDateUtc": "2025-12-04T03:11:35.9436215+02:00",
"State": 1,
"SubscriptionId": "b0db7f91-2d9e-410f-900f-2fd88570af48",
"TargetEndpointUri": "sample string 8",
"WebhookEventId": "ec346355-9009-40f4-82df-bc1e157487da"
}
application/xml, text/xml
Sample:
<Subscription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus.webhookservicews.Responses"> <Counter>1</Counter> <CustomHeader>sample string 2</CustomHeader> <EndDateUtc>2025-12-04T03:11:35.9436215+02:00</EndDateUtc> <JsonPathFilter>sample string 4</JsonPathFilter> <SignKey>sample string 5</SignKey> <StartDateUtc>2025-12-04T03:11:35.9436215+02:00</StartDateUtc> <State>Active</State> <SubscriptionId>b0db7f91-2d9e-410f-900f-2fd88570af48</SubscriptionId> <TargetEndpointUri>sample string 8</TargetEndpointUri> <WebhookEventId>ec346355-9009-40f4-82df-bc1e157487da</WebhookEventId> </Subscription>