Skip to main content
POST
/
v1
/
sms
/
send
Send an SMS message
curl --request POST \
  --url https://api.revdesk.com/v1/sms/send \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "to": "<string>",
  "from": "<string>",
  "message": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Headers

Idempotency-Key
string

UUID — when present, deduplicates repeat submissions. See /api-reference/idempotency.

Body

application/json
to
string
required
Minimum string length: 1
from
string
required
Minimum string length: 1
message
string
required
Minimum string length: 1

Response

Success

The response is of type object.