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

Create SMS Campaign

Send bulk messages to multiple recipients.

  • Endpoint: POST /messages/bulk

  • Description: Sends a message to a list of phone numbers in bulk.

Request Parameters:

  • recipients (array of strings, required): List of recipient numbers.

  • message (string, required): The SMS text to send.

Request Example:

jsonCopy code{
  "recipients": ["+1234567890", "+0987654321"],
  "message": "Welcome to our service!"
}

Response:

jsonCopy code{
  "status": "success",
  "batch_id": "batch001",
  "recipients_sent": 2
}

PreviousSend Single SMSNextRetrieve Message Status

Last updated 7 months ago