GET
/
messages
/
{message_id}
curl --request GET \
  --url https://api.courier.com/messages/{message_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "CANCELED",
  "enqueued": 123,
  "sent": 123,
  "delivered": 123,
  "opened": 123,
  "clicked": 123,
  "recipient": "<string>",
  "event": "<string>",
  "notification": "<string>",
  "error": "<string>",
  "reason": "FILTERED",
  "providers": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

message_id
string
required

A unique identifier associated with the message you wish to retrieve (results from a send).

Response

200
application/json

The response is of type object.