GET api/Queue/QueueTableDetails?subscriptionGuid={subscriptionGuid}&actionType={actionType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subscriptionGuid | string |
Required |
|
| actionType | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of QueueTableEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| QueueItemId | integer |
None. |
|
| EventSubscriptionId | integer |
None. |
|
| EventId | integer |
None. |
|
| ActionType | string |
None. |
|
| KeyValue | string |
None. |
|
| LastDeliveryDate | date |
None. |
|
| ChangedByUsr | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"QueueItemId": 1,
"EventSubscriptionId": 1,
"EventId": 1,
"ActionType": "sample string 1",
"KeyValue": "sample string 2",
"LastDeliveryDate": "2025-11-29T15:07:58.1934379+01:00",
"ChangedByUsr": "sample string 4"
},
{
"QueueItemId": 1,
"EventSubscriptionId": 1,
"EventId": 1,
"ActionType": "sample string 1",
"KeyValue": "sample string 2",
"LastDeliveryDate": "2025-11-29T15:07:58.1934379+01:00",
"ChangedByUsr": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfQueueTableEntry xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<QueueTableEntry>
<QueueItemId>1</QueueItemId>
<EventSubscriptionId>1</EventSubscriptionId>
<EventId>1</EventId>
<ActionType>sample string 1</ActionType>
<KeyValue>sample string 2</KeyValue>
<LastDeliveryDate>2025-11-29T15:07:58.1934379+01:00</LastDeliveryDate>
<ChangedByUsr>sample string 4</ChangedByUsr>
</QueueTableEntry>
<QueueTableEntry>
<QueueItemId>1</QueueItemId>
<EventSubscriptionId>1</EventSubscriptionId>
<EventId>1</EventId>
<ActionType>sample string 1</ActionType>
<KeyValue>sample string 2</KeyValue>
<LastDeliveryDate>2025-11-29T15:07:58.1934379+01:00</LastDeliveryDate>
<ChangedByUsr>sample string 4</ChangedByUsr>
</QueueTableEntry>
</ArrayOfQueueTableEntry>