Update an existing conversation (only internal notes can be updated)
curl --request PATCH \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/conversation/{conversationId} \
--header 'Content-Type: application/json' \
--data '{
"content": {
"message": "<string>"
},
"type": "text"
}'
{
"success": true
}
Cookie-based authentication
The ID of the ticket
The ID of the conversation to update
Successful operation
The response is of type object
.
curl --request PATCH \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/conversation/{conversationId} \
--header 'Content-Type: application/json' \
--data '{
"content": {
"message": "<string>"
},
"type": "text"
}'
{
"success": true
}