cURL
curl --request GET \ --url https://api.example.com/api/v1/conversations \ --header 'Authorization: Bearer <token>'
{ "items": [ { "id": "<string>", "user_id": "<string>", "store_id": "<string>", "created_at": "<string>", "updated_at": "<string>", "item_count": 0 } ], "total": 123, "limit": 123, "offset": 123 }
List conversations for the tenant, optionally filtered by user_id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 <= x <= 100
x >= 0
Successful Response
List of conversations matching the filter
Show child attributes
Total number of conversations matching the filter
Maximum number of items returned
Number of items skipped (for pagination)