This method allows you to add arbitrary events to a ticket's history.
/api/v2/tickets/add_log_event
This method can only be accessed by account API tokens.
ticket
- the reference of the ticket you wish to add a log event for (required)description
- the text for the log event (required)user
- the ID or username of the user who is performing this action (optional, defaults to 'System')If a log event is added successfully you will receive a 201 Created
status with information about the added event. If any validation fails, you will receive a 422 Unprocessable Entity
.
{
"id": 110,
"description": null,
"user": null,
"timestamp": "2012-04-12T13:07:29Z"
}