POSThttps://omni-apis.montymobile.com/notification/api/v1/sms/send-sms
Send SMS
Send a single text message to one recipient. A GET variant accepts the same fields as query parameters.
Request body
| Parameter | Type | Required | Description |
|---|---|---|---|
Destination | String | Yes | Recipient MSISDN, international format, digits only. |
Source | String | Yes | Approved sender ID. |
Message | String | Yes | The message text. |
ApiId | String (UUID) | Yes | Your integration ID. |
Try it
Try itSimulate the delivery lifecycle
POSTomni-apis.montymobile.com/notification/api/v1/sms/send-smsSimulated · no message is actually sent
Responses
200 Success
json
{
"message": "Success",
"code": "8_10_200",
"success": true,
"data": { "messageId": "329e121b-aa8e-47e7-ae30-be8a40a38d4a", "errorCode": 0, "description": null },
"version": "1"
}
400 Invalid sender
json
{
"message": "Invalid Sender",
"code": "8_10_400",
"success": false,
"data": { "messageId": null, "errorCode": 2, "description": null },
"version": "1"
}
400 Unauthorized access
json
{
"message": "Unauthorized Access",
"code": "8_10_400",
"success": false,
"data": { "messageId": null, "errorCode": 5, "description": null },
"version": "1"
}
See Error codes for the full list.