Messaging


POSThttps://api.voxo.co/v2/messaging/sendSMS

Send SMS

Send an SMS text message to one or more numbers

IMPORTANT: 10DLC Compliance must be considered when sending messages to multiple numbers or sending multiple programmatic requests. Messages are subject to rate limits determined by your brand and messaging campaigns tier. Exceeding rate limits will result in messaging failures.

Post Parameters

  • Name
    tenantId*
    Type
    number
    Description
    Account id
  • Name
    from*
    Type
    string
    Description

    10DLC number from which to send the message. This number must belong to your account and be provisioned in the 10DLC ecosystem

  • Name
    fromExt*
    Type
    number
    Description

    User extension number to identify message sender. Recommended, but not required for account admin or partner admin roles.

  • Name
    to*
    Type
    string[]
    Description
    Array of phone numbers to send the message to
  • Name
    text*
    Type
    string
    Description
    The message body

Header

  • Name
    Authorization*
    Type
    string
    Description

    Bearer {accessToken}

  • Name
    Content-Type*
    Type
    string
    Description
    application/json

Request

POST
/messaging/sendSMS
curl --location -g --request POST 'https://api.voxo.co/v2/messaging/sendSMS' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {accessToken}'

Response

{
  "tenantId": 1234,
  "from": "6015555555",
  "fromExt": 1001
  "to": ["6015555556", "6015555557"],
  "text": "Hot dad riding in on a rhino"
},