POST
/
v1
/
sms
/
bulk
curl --request POST \
  --url https://api.terrareach.com/api/v1/sms/bulk \
  --header 'Content-Type: application/json' \
  --data '{
  "mask": "<string>",
  "message": "<string>",
  "phoneNumbers": [
    "<string>"
  ],
  "apiKey": "<string>"
}'
[
  {
    "id": "<string>",
    "text": "<string>",
    "senderId": "<string>",
    "to": "<string>",
    "type": "TRANSACTIONAL",
    "initiatedMedium": "API_CALL",
    "deliveryStatus": "SUCCESSFULLY_SUBMITTED_TO_SMSC"
  }
]

Body

application/json
mask
string
required
message
string
required
phoneNumbers
string[]
required
apiKey
string
required

Response

200
*/*
OK
id
string
text
string
senderId
string
to
string
type
enum<string>
Available options:
TRANSACTIONAL,
CAMPAIGN
initiatedMedium
enum<string>
Available options:
API_CALL,
WEB_INTERFACE
deliveryStatus
enum<string>
Available options:
SUCCESSFULLY_SUBMITTED_TO_SMSC,
NUMBER_NOT_VALID_OR_CONNECTIVITY_FAILURE,
DELIVERED,
FAILED