Bulk Messaging API

Send multiple Omnimessages with one API request

For the full API documentation refer to Omnichannel HTTP API reference.

All endpoints require HTTP basic authorization header with Messente API username and password. You can find the API username and password under your Account API Settings.

Request endpoint

POST https://api.messente.com/v1/omnimessages

Request Body

Request body of this endpoint just contains multiple Omnimessages under "messages" list.
For the full list of parameters refer to Omnichannel HTTP API reference


We recommend to push up to 1000 messages within one bulk request for the request response to be within reasonable limits.

Example Request Body

{
  "messages": [
    {
      "to": "+4400000001",
      "messages": [{
          "channel": "sms",
          "text": "Hi John!",
          "sender": "Messente"
      }]
    },
    {
      "to": "+4400000002",
      "messages": [{
          "channel": "sms",
          "text": "Hi Jane!",
          "sender": "Messente"
      }]
    }
  ]
}