Enables sending bulk SMS messages to multiple recipients using a provided API key, template GUID, sender ID, and recipient details. This feature ensures efficient delivery of messages to large audiences, while allowing you to track the status and acknowledge the completion of your requests.
Process Overview:
POST https://api.msg4.cloud.robeeta.com/Sms/SendBulkSms
Authorization: Api key
Header: Content-Type: application/json
Request Body:
Response Body:
| StatusCode | Response |
|---|---|
| 200 | OK |
| 1704 | Invalid ApiKey |
| 1705 | No recipient data provided |
| 1706 | Invalid Sender Id |
| 1707 | Invalid Template Guid |
| 500 | Unknown Error |
Note: You can only send SMS messages using templates linked to your Msg4 account. Before sending SMS, you must add the desired SMS template to your Msg4 account, obtain a new template GUID for the approved template, and use this GUID when initiating the bulk SMS request. Additionally, please note that the SendBulkSms function has a limit of 100 SMS messages per request at a time.
curl -X POST \
https://api.msg4.cloud.robeeta.com/Sms/SendBulkSms \
-H "Content-Type: application/json" \
-d '{
"ApiKey": "string",
"TemplateGuid": "string",
"PEID": "string",
"SenderId": "string",
"CampaignName": "string",
"BulkSmsData": [
{
"MobileNumber": "string",
"KeyValue": [
{
"Key": "string",
"Value": "string"
}
]
}
]
}'
{
"Response": "string",
"StatusCode": 0,
"TaskGuid": "string"
}