cURL
curl --request GET \ --url https://api.crunchz.app/api/chat \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "<string>", "data": [ "<string>" ], "meta": { "current_page": 1, "per_page": 50, "total": 150, "total_pages": 3, "has_next_page": true, "has_prev_page": false } }
Retrieve a paginated list of all chat conversations in your WhatsApp channel with metadata and recent activity timestamps.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Limit (optional, default: 50)
Offset (optional, default: 0)
RecentChatCollection
The success status of response.
The message of response.
Show child attributes
Current page number
1
Number of items per page
50
Total number of items
150
Total number of pages
3
Whether there is a next page
true
Whether there is a previous page
false
Was this page helpful?