ECSEND API v1 Documentation

Send SMS

Use POST /sms/send for single message delivery.

POST /sms/send

Required payload fields: to, text, and senderId.

json

{
  "to": "+25884XXXXXXX",
  "text": "Hello from ECSEND API!",
  "senderId": "ECSEND"
}
200 OK

Typical success payload:

json

{
  "success": true,
  "message": "Message sent successfully",
  "historyId": "clx123abc",
  "units": 1
}
400 / 401 / 500

Errors follow the OpenAPI Error schema: {"error": "message"}.

1