LingoDelivery
Delivery Status Messages generated by the platform to denote successful/unsuccessful Message delivery.
This is most pertinent to the AWS SQS Delivery Destination and its Status Queue
id- Unique Identifier for each Message generated by the Customer (or Platform, if not supplied)status- Associated status of the Message submissionDELIVERY_SUBMITTEDDELIVERY_ERROR
at- Time of the StatuserrorDELIVERY_ERROR_UNKNOWNDELIVERY_ERROR_INVALID_IDENTIFIERDELIVERY_ERROR_INVALID_MESSAGE
Example - Status Message (Success)
{
"id": "47ad1db0-a073-4716-95a4-cd490cfdfab6",
"status": "DELIVERY_SUBMITTED",
"at": {
"year": 2023,
"month": 10,
"day": 4,
"hour": 15,
"minute": 37,
"second": 10
},
"error": ""
}
Example - Status Message (Error)
{
"id": "47ad1db0-a073-4716-95a4-cd490cfdfab6",
"status": "DELIVERY_ERROR",
"at": {
"year": 2023,
"month": 10,
"day": 4,
"hour": 15,
"minute": 37,
"second": 10
},
"error": "DELIVERY_ERROR_INVALID_IDENTIFIER"
}