POST
/
ticket
/
{ticketId}
/
forward
curl --request POST \
  --url https://demo.enneo.ai/api/mind/ticket/{ticketId}/forward \
  --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
}

Authorizations

connect.sid
string
cookie
required

Cookie-based authentication

Path Parameters

ticketId
integer
required

The id of the ticket

Body

application/json
body
string

The body of the note

Example:

"Hello, I am forwarding this ticket to you. Please take care of it."

toEmail
string

The email address to forward the ticket to

Example:

"grid@operator.de"

subject
string

Custom subject for the forwarded email. If not provided, the original ticket subject will be used.

Example:

"Forwarded: Customer inquiry about contract"

Response

200
application/json
Successful operation

Data format of Enneo success messages

success
boolean

Operation was successful

Example:

true