Retrieves a list of interactive WhatsApp messages with filtering, pagination, and search capabilities. The API allows you to fetch messages within a specific date range with various filtering options.
POST
https://api.msg4.cloud.robeeta.com/Message/ReadWbaInteractiveMessageList
Authorization: Api key
Header: Content-Type: application/json
Request Body
Response Body
Status Codes and Descriptions:
| StatusCode | Response | Description |
|---|---|---|
| 200 | OK | Request successful |
| 400 | Invalid Sender Number | Sender number missing or invalid |
| 400 | Start/End Date Error | Dates must be same day |
| 401 | Invalid Access | API key failed |
| 402 | Message Count Exceeds | Cannot exceed 100 |
| 403 | Invalid Access | Sender number unauthorized |
| 500 | Error | Internal error |
| 500 | Unknown Error | Unexpected error |
| 1705 | Invalid Mobile Number | Mobile number empty |
| 1704 | Invalid ApiKey | ApiKey empty |
Important Notes:
curl -X POST \
https://api.msg4.cloud.robeeta.com
/Message/ReadWbaInteractiveMessageList \
-H "Content-Type: application/json" \
-d '{
"ApiKey": "string",
"SenderNumber": "string",
"StartTime": "string",
"EndTime": "string",
"PageNumber": 0,
"RowsPerPage": 0,
"QuickSearch": "string",
"SortColumn": "string",
"SortDescending": false
}'
{
"Response": "string",
"StatusCode": 0,
"TotalPages": 0,
"TotalRows": 0,
"WbaInteractiveMessageList": [
{
"MessageId": "string",
"BaseMessageId": "string",
"ReplyType": "string",
"ReplyId": "string",
"MessageText": "string",
"MobileNumber": "string",
"MessageType": "string",
"OriginType": "string"
}
]
}