Documentation
  • Overview
    • Introduction
    • Authentication
    • Delivery Statuses
    • FAQs
      • Messages
      • Reports
      • Cost
  • Messaging
    • Send Single SMS
    • Create SMS Campaign
    • Retrieve Message Status
    • Retrieve Campaign Reports
  • Sender Names
    • Create Sender Name
    • List Sender Names
    • Update Sender Name
    • Delete Sender Name
  • Account Balance
  • Error Handling
Powered by GitBook
On this page
  1. Messaging

Retrieve Message Status

Get the delivery status of a previously sent message.

  • Endpoint: GET /reports/status/{message_id}

  • Description: Retrieves the delivery status of an individual message.

Request Example:

bashCopy codeGET /reports/status/abc123 HTTP/1.1
Authorization: Bearer {API_KEY}

Response:

jsonCopy code{
  "message_id": "abc123",
  "status": "delivered",
  "delivered_at": "2024-10-17T12:34:56Z"
}

PreviousCreate SMS CampaignNextRetrieve Campaign Reports

Last updated 7 months ago