curl --request POST \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/forward \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body": "Hello, I am forwarding this ticket to you. Please take care of it.",
"toEmail": "grid@operator.de",
"subject": "Forwarded: Customer inquiry about contract"
}
'{
"success": true
}Forward a ticket to free typed email address
curl --request POST \
--url https://demo.enneo.ai/api/mind/ticket/{ticketId}/forward \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body": "Hello, I am forwarding this ticket to you. Please take care of it.",
"toEmail": "grid@operator.de",
"subject": "Forwarded: Customer inquiry about contract"
}
'{
"success": true
}JWT-based authentication
The id of the ticket
The body of the note
"Hello, I am forwarding this ticket to you. Please take care of it."
The email address to forward the ticket to
"grid@operator.de"
Custom subject for the forwarded email. If not provided, the original ticket subject will be used.
"Forwarded: Customer inquiry about contract"
Successful operation
Data format of Enneo success messages
Operation was successful
true