GET api/email-communication-queue?maxAttempts={maxAttempts}&start={start}&limit={limit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| maxAttempts | integer |
Default value is -1 |
|
| start | integer |
Default value is 0 |
|
| limit | integer |
Default value is 25 |
Body Parameters
None.
Response Information
Resource Description
EmailCommunicationQueueModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EmailCommunicationQueueId | globally unique identifier |
None. |
|
| KrocCenterId | globally unique identifier |
None. |
|
| CommunicationTypeId | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| Priority | integer |
None. |
|
| SendFrom | string |
None. |
|
| SendTo | string |
None. |
|
| Message | string |
None. |
|
| Attachments | AttachmentDescriptor |
None. |
|
| QueueDateTime | date |
None. |
|
| Attempts | integer |
None. |
|
| KrocCenterName | string |
None. |
|
| CommunicationTypeName | string |
None. |
|
| CustomerLastName | string |
None. |
|
| CustomerFirstName | string |
None. |
|
| CustomerBarcode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmailCommunicationQueueId": "e201c074-efb2-4272-9b06-f299c156bdd1",
"KrocCenterId": "a9e244f7-ac1a-4488-a980-fb2f6b01b8a9",
"CommunicationTypeId": "ac1bbba7-9ff7-48a5-9663-6b4c7d8375e4",
"CustomerId": "1c8c06bb-b2b1-4aab-bec3-f8e39f58c5ac",
"Priority": 4,
"SendFrom": "sample string 5",
"SendTo": "sample string 6",
"Message": "sample string 7",
"Attachments": {
"Attachment": null
},
"QueueDateTime": "2025-12-19T19:45:06.2059988-08:00",
"Attempts": 9,
"KrocCenterName": "sample string 10",
"CommunicationTypeName": "sample string 11",
"CustomerLastName": "sample string 12",
"CustomerFirstName": "sample string 13",
"CustomerBarcode": "sample string 14"
}
application/xml, text/xml
Sample:
<EmailCommunicationQueueModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCMS.Models.DTO">
<Attachments xmlns:d2p1="http://schemas.datacontract.org/2004/07/CCMS.Models">
<d2p1:Attachment i:nil="true" />
</Attachments>
<Attempts>9</Attempts>
<CommunicationTypeId>ac1bbba7-9ff7-48a5-9663-6b4c7d8375e4</CommunicationTypeId>
<CommunicationTypeName>sample string 11</CommunicationTypeName>
<CustomerBarcode>sample string 14</CustomerBarcode>
<CustomerFirstName>sample string 13</CustomerFirstName>
<CustomerId>1c8c06bb-b2b1-4aab-bec3-f8e39f58c5ac</CustomerId>
<CustomerLastName>sample string 12</CustomerLastName>
<EmailCommunicationQueueId>e201c074-efb2-4272-9b06-f299c156bdd1</EmailCommunicationQueueId>
<KrocCenterId>a9e244f7-ac1a-4488-a980-fb2f6b01b8a9</KrocCenterId>
<KrocCenterName>sample string 10</KrocCenterName>
<Message>sample string 7</Message>
<Priority>4</Priority>
<QueueDateTime>2025-12-19T19:45:06.2059988-08:00</QueueDateTime>
<SendFrom>sample string 5</SendFrom>
<SendTo>sample string 6</SendTo>
</EmailCommunicationQueueModel>