Read Receiptsv2
Mark chat as read
POST
/chats/{chatId}/readMark all messages in a chat as read. This sends a read receipt to the sender.
Path parameters
chatIdRequiredstringChat identifier. Can be: (1) phone number in E.164 format (e.g., +15551234567), (2) email address, (3) group ID (grp_xxxx), or (4) comma-separated list of phone numbers/emails for multi-recipient group chats (e.g., +15551234567,+15559876543). All values should be URL-encoded.
Headers
AuthorizationRequiredstringYour API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.
Bearer
Returns
chat_idoptionalstringChat identifier
statusoptionalstringRead status
"read"marked_atoptionalintegerTimestamp when marked as read
Response codes
200Chat marked as read
400Invalid request parameters
401Authentication required or invalid
404Resource not found
502Temporary communication error
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X POST https://api.blooio.com/v2/api/chats/chat_a1b2c3d4/read \ -H "Authorization: Bearer bl_live_..."{ "chat_id": "chat_a1b2c3d4", "status": "read", "marked_at": 0}