Skip to content

Check status

The API allows you to check the current status of a specific message. To do this, use the id returned when the message was sent.

Request to check the status of an SMS

GET https://send.obmessage.ai/api/v1/sms/{id}
X-Api-Key: {{API_KEY}}

The {id} is the message identification code returned during delivery.

Response: 200 OK

{
    "id": "string",
    "phone": "string",
    "reference": "string",
    "group": "string",
    "status": "string",
    "created_at": "string"
}

Request to check the status of an email

GET https://send.obmessage.ai/api/v1/email/{id}
X-Api-Key: {{API_KEY}}

Try it in Postman

The {id} is the message identification code returned in the delivery request.

Response: 200 OK

{
    "id": "string",
    "to": "string",
    "subject": "string",
    "reference": "string",
    "group": "string",
    "status": "string",
    "created_at": "string"
}