Action required: We're beginning to shutdown our old platform. Please migrate to our new platform ASAP. Instructions available in our migration guide.
cURL
curl --request POST \ --url https://api.contiguity.com/send/imessage/read \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "to": "+1234567890", "from": "+15555555555" } '
{ "id": "req_xxxxxxxxxxxxxxxx", "timestamp": 1761968887641, "api_version": "v2025.10.31", "object": "response", "data": { "status": "sent", "message": "Read receipt sent to +1234567890 from +15555555555" } }
Mark a conversation as read
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Recipient's iMessage address. Must be in E.164 format.
"+1234567890"
The iMessage number that you have been using to send messages to this recipient.
"+15555555555"
Send read receipt to an iMessage recipient
"req_xxxxxxxxxxxxxxxx"
1761968887641
"v2025.10.31"
"response"
Show child attributes
Status of the read receipt
"sent"
Confirmation message
"Read receipt sent to +1234567890 from +15555555555"
Was this page helpful?