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
EmailCommunicationQueueModelName | 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": "06b838d6-9b71-4ab1-b84e-69a2d88a8405", "KrocCenterId": "3fdf283f-d69f-4dfd-a517-085489160f78", "CommunicationTypeId": "c4c01d85-50bf-4640-b18a-b149e4786afe", "CustomerId": "5196cf51-fe69-4d7b-9077-5e46759bb64f", "Priority": 4, "SendFrom": "sample string 5", "SendTo": "sample string 6", "Message": "sample string 7", "Attachments": { "Attachment": null }, "QueueDateTime": "2025-01-21T22:42:32.0802309-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>c4c01d85-50bf-4640-b18a-b149e4786afe</CommunicationTypeId> <CommunicationTypeName>sample string 11</CommunicationTypeName> <CustomerBarcode>sample string 14</CustomerBarcode> <CustomerFirstName>sample string 13</CustomerFirstName> <CustomerId>5196cf51-fe69-4d7b-9077-5e46759bb64f</CustomerId> <CustomerLastName>sample string 12</CustomerLastName> <EmailCommunicationQueueId>06b838d6-9b71-4ab1-b84e-69a2d88a8405</EmailCommunicationQueueId> <KrocCenterId>3fdf283f-d69f-4dfd-a517-085489160f78</KrocCenterId> <KrocCenterName>sample string 10</KrocCenterName> <Message>sample string 7</Message> <Priority>4</Priority> <QueueDateTime>2025-01-21T22:42:32.0802309-08:00</QueueDateTime> <SendFrom>sample string 5</SendFrom> <SendTo>sample string 6</SendTo> </EmailCommunicationQueueModel>