Returns all conversations from the system
cURL
curl --request GET \ --url https://backend.wassist.app/api/v1/conversations/ \ --header 'X-API-Key: <api-key>'
{ "count": 123, "results": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "contact": "<string>", "agent": "<string>", "chatWindowRemainingTime": "<string>", "lastMessage": "<string>", "isHumanTakeover": "<string>", "active": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "credits": -1 } ], "next": "http://api.example.org/accounts/?offset=400&limit=100", "previous": "http://api.example.org/accounts/?offset=200&limit=100" }
API key authentication. Pass your API key in the X-API-Key header.
1
Pagination limit (default 20, max 100)
Pagination offset (default 0)
active
closed
123
Show child attributes
"http://api.example.org/accounts/?offset=400&limit=100"
"http://api.example.org/accounts/?offset=200&limit=100"
Was this page helpful?