POST
/
transactional_messages
/
send_sms
curl --request POST \
  --url https://api.v3.tatango.com/transactional_messages/send_sms \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "phoneNumber": "5551234567",
  "webhookUrl": "https://yourpostbackaddress.com",
  "content": "Hello world, this is my SMS message."
}'
{
  "message": "Request accepted, sending message to recipient",
  "transactionId": "019687e1-1b54-70f4-a68a-60af7fa776f4"
}

Authorizations

x-api-key
string
header
required

Tatango API key

Body

application/json

SMS message request

The body is of type object.

Response

202
application/json

SMS message accepted

The response is of type object.