GET
/
message-status
/
{notificationId}
{
  "status": "<string>"
}
Authorization
string
required
Bearer token for API authentication. Format: Bearer {{apiToken}}Required: API Key with full access

Path Parameters

UUID
required
Unique ID of the sent notification

Response

Success Response (200 OK)

status
string
required
Current status of the message (enum value)

Response Examples

Example: Successful Status Check

{
  "status": "DELIVERED"
}

Possible Status Values

  • QUEUED: Message is queued for sending
  • SENT: Message has been sent to the provider
  • DELIVERED: Message has been delivered to the recipient
  • FAILED: Message delivery failed
  • READ: Message has been read by the recipient (if supported by channel)