curl --location -g --request PUT 'https:///api/v2/workflows/chat-threads/' \
--header 'Ocp-Apim-Subscription-Key: ' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Updated Thread Title"
}'
{
"success": true,
"message": "Workflow chat thread updated successfully",
"data": {
"id": 4,
"is_deleted": false,
"title": "Updated Thread Title",
"created_by": "admin@ejento.ai",
"created_on": "2025-05-08T22:04:52.900218Z",
"workflow": 1,
"user": 1
}
}