GET
Get View Statuses
Get read/view receipts for a message or story. Data is cached from message-receipt.update events.
API endpoint
https://waclient.com/api/get_view_statusesExample:
curl -X GET \
'https://waclient.com/api/get_view_statuses' \
-G \
--data-urlencode 'instance_id=6A4B02A1XXXX' \
--data-urlencode 'access_token=EMCUH3NQQK8YXXXX'Response
{
"status": "success",
"message": "Success",
"data": {
"chat_id": "status@broadcast",
"message_id": "ABC123",
"receipt": [],
"updatedAt": 1710000000000
}
}| Parameter | Description |
|---|---|
| message_id / story_id | Message or story ID (Optional) |
| chat_id / author | Chat JID — use status@broadcast for your Status (Optional) |
| limit | When listing all cached receipts (Optional) |
| instance_id | Your instance ID |
| access_token | Your access token |