GetMessageResponse
Response for get message request containing full message details
Properties
| Name | Type | Description |
|---|---|---|
| messageId | string | Unique message ID |
Unique message ID | ||
| status | enum | Represents the status of an email message |
Represents the status of an email message | ||
| createdDate | string | When the message was created |
When the message was created | ||
| processedAt | string | When the message was processed |
When the message was processed | ||
| sentAt | string | When the message was sent |
When the message was sent | ||
| retryCount | integer | Number of retry attempts |
Number of retry attempts | ||
| lastError | string | Last error message if any |
Last error message if any | ||
| externalReference | string | External reference from calling application |
External reference from calling application | ||
| subject | string | Email subject line |
Email subject line | ||
| fromEmail | string | Sender email address |
Sender email address | ||
| fromName | string | Sender display name |
Sender display name | ||
| replyToEmail | string | Reply-to email address |
Reply-to email address | ||
| replyToName | string | Reply-to display name |
Reply-to display name | ||
| to | array of EmailRecipientDto | List of To recipients |
List of To recipients | ||
| cc | array of EmailRecipientDto | List of Cc recipients |
List of Cc recipients | ||
| bcc | array of EmailRecipientDto | List of Bcc recipients |
List of Bcc recipients | ||
| attachments | array of EmailAttachmentInfoDto | List of attachments (metadata only, not content) |
List of attachments (metadata only, not content) | ||
JSON Example
{
"messageId": "00000000-0000-0000-0000-000000000000",
"status": "Queued",
"createdDate": "2024-01-01T00:00:00Z",
"processedAt": "2024-01-01T00:00:00Z",
"sentAt": "2024-01-01T00:00:00Z"
}