Fetches a detailed list of bulk SMS records associated with a specific task, identified by the provided API key and task GUID. Optionally, you can filter the results by a specific mobile number to view relevant records. This functionality allows you to monitor and analyze the messages sent as part of the bulk SMS task.
POST https://api.msg4.cloud.robeeta.com/Sms/ReadBulkSmsList
Authorization: API Key
Header: Content-Type: application/json
Request Body:
Response Body:
| StatusCode | Response |
|---|---|
| 200 | OK |
| 1704 | Invalid ApiKey |
| 1708 | Invalid Task Guid |
| 500 | Unknown Error |
curl -X POST \
https://api.msg4.cloud.robeeta.com/Sms/ReadBulkSmsList \
-H "Content-Type: application/json" \
-d '{
"ApiKey": "string",
"TaskGuid": "string",
"MobileNumber": "string"
}'
{
"Response": "string",
"StatusCode": 0,
"BulkSmsList": [
{
"MsgDate": "datetime",
"MsgId": 0,
"MsgValue": 0,
"MsgCount": 0,
"PEID": "string",
"SenderId": "string",
"CampaignName": "string",
"MsgText": "string",
"RouteName": "string",
"SpTemplateId": "string",
"MobileNumber": "string",
"MsgStatus": "string",
"DeliveryStatus": "string",
"DeliveryTime": "datetime"
}
]
}