agent_id
as a required path parameter.agent_id
, follow this guide:200 OK
), returns:id
for the chat thread.corpus_id
and chat_id
.user
, agent
).created_by
, modified_by
, created_on
, modified_on
.title
and a deletion status flag (is_deleted
).curl --location --request GET '/v2/api/agent//chat-thread'
{
"success": true,
"message": "Chat Threads Found Successfully.",
"data": [
{
"id": 1001,
"corpus_id": null,
"created_by": "user@example.com",
"created_on": "2025-01-08T22:00:19.910507Z",
"modified_by": "",
"modified_on": "2025-01-08T22:00:19.910532Z",
"title": "Sample Thread Title",
"is_deleted": false,
"chat_id": null,
"agent": 101,
"user": 500
}
]
}