GET api/v1/Webhooks/Subscriptions/{id}/Payloads?state={state}
Gets payloads which have the given state. Returns most recent, maximum of 1000 payloads.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
|
| state | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of sent payloads with given type and subscription
Collection of Payload| Name | Description | Type | Additional information |
|---|---|---|---|
| Counter | integer |
None. |
|
| CreatedUtc | date |
None. |
|
| Data | string |
None. |
|
| FailedRequests | integer |
None. |
|
| Response | string |
None. |
|
| State | EventState |
None. |
|
| SubscriptionId | globally unique identifier |
None. |
|
| WebhookEventPayloadId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Counter": 1,
"CreatedUtc": "2025-11-21T01:14:29.2938849+02:00",
"Data": "sample string 3",
"FailedRequests": 4,
"Response": "sample string 5",
"State": 1,
"SubscriptionId": "4acbba07-e1a0-4e46-935d-0e9b16f7f3a7",
"WebhookEventPayloadId": "c81e7fc9-9a3f-4d2a-a1d7-66c476c72963"
},
{
"Counter": 1,
"CreatedUtc": "2025-11-21T01:14:29.2938849+02:00",
"Data": "sample string 3",
"FailedRequests": 4,
"Response": "sample string 5",
"State": 1,
"SubscriptionId": "4acbba07-e1a0-4e46-935d-0e9b16f7f3a7",
"WebhookEventPayloadId": "c81e7fc9-9a3f-4d2a-a1d7-66c476c72963"
}
]
application/xml, text/xml
Sample:
<ArrayOfPayload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus.webhookservicews.Responses">
<Payload>
<Counter>1</Counter>
<CreatedUtc>2025-11-21T01:14:29.2938849+02:00</CreatedUtc>
<Data>sample string 3</Data>
<FailedRequests>4</FailedRequests>
<Response>sample string 5</Response>
<State>Received</State>
<SubscriptionId>4acbba07-e1a0-4e46-935d-0e9b16f7f3a7</SubscriptionId>
<WebhookEventPayloadId>c81e7fc9-9a3f-4d2a-a1d7-66c476c72963</WebhookEventPayloadId>
</Payload>
<Payload>
<Counter>1</Counter>
<CreatedUtc>2025-11-21T01:14:29.2938849+02:00</CreatedUtc>
<Data>sample string 3</Data>
<FailedRequests>4</FailedRequests>
<Response>sample string 5</Response>
<State>Received</State>
<SubscriptionId>4acbba07-e1a0-4e46-935d-0e9b16f7f3a7</SubscriptionId>
<WebhookEventPayloadId>c81e7fc9-9a3f-4d2a-a1d7-66c476c72963</WebhookEventPayloadId>
</Payload>
</ArrayOfPayload>