GET api/email-communication-queue/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
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": "de0e5f9e-f105-408b-a2ab-b9061e566ffb",
"KrocCenterId": "176e1b1b-9c10-467b-9345-9eb498915f2a",
"CommunicationTypeId": "0ae5a610-61fc-4560-92c1-ff93b466ddbd",
"CustomerId": "e916afdb-547d-4c27-8283-c6d8d3773dd9",
"Priority": 4,
"SendFrom": "sample string 5",
"SendTo": "sample string 6",
"Message": "sample string 7",
"Attachments": {
"Attachment": null
},
"QueueDateTime": "2026-07-31T14:36:52.4075192-07: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>0ae5a610-61fc-4560-92c1-ff93b466ddbd</CommunicationTypeId>
<CommunicationTypeName>sample string 11</CommunicationTypeName>
<CustomerBarcode>sample string 14</CustomerBarcode>
<CustomerFirstName>sample string 13</CustomerFirstName>
<CustomerId>e916afdb-547d-4c27-8283-c6d8d3773dd9</CustomerId>
<CustomerLastName>sample string 12</CustomerLastName>
<EmailCommunicationQueueId>de0e5f9e-f105-408b-a2ab-b9061e566ffb</EmailCommunicationQueueId>
<KrocCenterId>176e1b1b-9c10-467b-9345-9eb498915f2a</KrocCenterId>
<KrocCenterName>sample string 10</KrocCenterName>
<Message>sample string 7</Message>
<Priority>4</Priority>
<QueueDateTime>2026-07-31T14:36:52.4075192-07:00</QueueDateTime>
<SendFrom>sample string 5</SendFrom>
<SendTo>sample string 6</SendTo>
</EmailCommunicationQueueModel>