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

The body is of type object.

Response

200
application/json

SMS sent successfully

The response is of type object.