POST
/
api
/
v1
/
send
/
sms
curl --request POST \
  --url https://api-v2.dexchange-sms.com/api/v1/send/sms \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "signature": "<string>",
  "content": "<string>",
  "number": [
    "<string>"
  ]
}'
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Details for sending an SMS
signature
string
required

The sender's signature

content
string
required

The content of the SMS

number
string[]
required

Array of recipient phone numbers

Response

200
application/json
SMS sent successfully
status
string

The status of the SMS

message
string

Additional information about the SMS