Send SMS Local
This API allows you to send SMS messages to a mobile phone number.
Send SMS
POST https://v2.api.getspendo.com/messagingserv/gateway/api/v1/send/sms
Headers
Name
Type
Description
apiKey*
String
The API key that you get from spendo's dashboard.
Request Body
Name
Type
Description
from*
string
The sender ID you want to appear as the sender of the message.
message*
string
The text message that you want to send, formatted as a string.
to*
string
The phone number of the recipient, formatted as a string without any spaces or special characters.
{
"success": true,
"message": "Message sent",
"code": 0,
"data": null
}{
"success": false,
"message": "Error sending message",
"code": 0,
"data": null
}Last updated