Retrieve all messages in a conversation
cURL
curl --request GET \ --url https://backend.wassist.app/api/v1/conversations/{id}/messages/ \ --header 'X-API-Key: <api-key>'
{ "count": 123, "results": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "role": "<string>", "type": "<string>", "status": "<string>", "createdAt": "2023-11-07T05:31:56Z", "text": "<string>", "image": "<string>", "ctaButton": "<string>", "listSelection": "<string>", "template": "<string>" } ], "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.
Pagination limit (default 50)
Pagination offset
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?