cURL
curl --request POST \ --url https://api.voxo.co/v2/messaging/messages/send-sms \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "tenantId": 123, "from": "<string>", "to": [ "<string>" ] } '
{ "createdConversations": [ "<unknown>" ], "postBody": "<unknown>", "messageIds": [ 123 ], "updatedAt": "<string>" }
Send an SMS message to one or more recipients
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Tenant ID
Sender phone number (10 digits)
^[1-9]\d{9}$
Recipient phone numbers
^[1-9]\d*$
Sender extension number
Message text
1
SMS sent
Newly created conversations
Original request body
Created message IDs
Updated timestamp
Was this page helpful?