chatthread_id
. Primarily used for renaming or updating the thread title, it ensures audit compliance by recording who made the change and when it was performed.chatthread_id
as a path parameter.title
.chat_thread_id
, follow this guide:curl --location -g --request PUT 'https:///v2/api/chat-thread/0' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Updated Thread Title"
}'
{
"success": true,
"message": "Chat Thread Updated Successfully.",
"data": {
"id": 2005,
"corpus_id": null,
"created_by": "user@example.com",
"created_on": "2025-01-24T22:08:58.740947Z",
"modified_by": "admin@example.com",
"modified_on": "2025-01-24T22:34:28.002871Z",
"title": "Updated Thread Title",
"is_deleted": false,
"chat_id": null,
"agent": 101,
"user": 500
}
}