Send SMS Bulk
This API allows you to send the same SMS message to multiple mobile phone numbers in a single API call.
Send SMS Bulk
POST
https://api.getspendo.com/gateway/api/v1/send/bulk/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
An array of phone numbers of the recipients, formatted as strings without any spaces or special characters.
{
"success": true,
"message": "Message sent",
"code": 0,
"data": null
}
Take a look at how you might call this method using our official libraries, or via curl
:
curl --location --request POST 'https://api.getspendo.com/gateway/api/v1/send/bulk/sms' \
--header 'apiKey: test_api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
"from": "string",
"message": "string",
"to": [
"string"
]
}'
Last updated
Was this helpful?