GET
/
chat
/
detail
curl --request GET \
  --url https://api.crunchz.app/api/chat/detail \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": [
    {
      "message_id": "<string>",
      "from_me": "<string>",
      "is_media": true,
      "body": "<string>",
      "status": "<string>",
      "reactions": [
        "<string>"
      ],
      "timestamp": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contact_id
string
required

The contact id.

Response

200
application/json

ChatCollection

The response is of type object.