Retrieve Campaign Reports

Retrieve a report for a batch of messages sent in bulk.

  • Endpoint: GET /reports/bulk/{batch_id}

  • Description: Retrieves the delivery report for bulk messages.

Request Example:

bashCopy codeGET /reports/bulk/batch001 HTTP/1.1
Authorization: Bearer {API_KEY}

Response:

jsonCopy code{
  "batch_id": "batch001",
  "total_recipients": 2,
  "delivered": 2,
  "failed": 0
}

Last updated