Update an existing conversation (internal notes and drafts can be updated; drafts can also be published by changing isDraft to false)
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",
"isDraft": true,
"to": [
"<string>"
],
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"intentIds": [
123
],
"attachments": [
{}
],
"subchannelId": 123
}'
{
"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",
"isDraft": true,
"to": [
"<string>"
],
"cc": [
"<string>"
],
"bcc": [
"<string>"
],
"intentIds": [
123
],
"attachments": [
{}
],
"subchannelId": 123
}'
{
"success": true
}