Statuses
Checking the status of submitted send requests
Request for check message status
GET https://a.loopmessage.com/v1/message/status/{id}/
You can check the status of each individual message based on the message ID.
Path Parameters
Name
Type
Description
id*
String
ID that you received after a successful request
Headers
Name
Type
Description
Authorization*
String
API Key. Required*.
Content-Type*
String
application/json
Some fields in JSON may be optional
{
"message_id": "2BC4FD6A-CE49-439F-81DF-E895C09CA49C",
"status": "processing",
"contact": "+13231112233",
"text": "text",
"error_code": 100,
"last_update": "2021-12-31T23:59:59.809Z"
}Some fields in JSON may be optional
{
"error_code": 100,
"message": "error description"
}Available statuses
Value
Description
processing
Send request was successfully accepted and is being processed
failed
Failed to send or deliver a message
delivered
Message was successfully delivered to a recipient
unknown
Message status is currently unknown
Last updated