Returns up to 20 conversations for a given end user, ordered by most recently updated. Only conversations with at least one message are returned.
cURL
curl --request GET \ --url https://platform.agentictrust.com/api/v1/chat/conversations \ --header 'x-api-key: <api-key>'
{ "conversations": [ { "id": "<string>", "status": "ACTIVE", "messageCount": 123, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "lastMessagePreview": "<string>", "lastMessageRole": "USER" } ] }
API key in lum_pk_* format. Pass via x-api-key header or Authorization: Bearer <key>.
lum_pk_*
x-api-key
Authorization: Bearer <key>
External user ID to filter conversations.
1
List of conversation summaries.
Show child attributes