This method allows you to add a checklist to a ticket.
/api/v2/checklists/add
This method can be accessed by all account tokens and by user tokens where the user has access to the ticket.
ticket
- the ticket reference you wish to add a checklist to (required)checklist
- the ID or name of a checklist you wish to add (required){
"status": "added"
}
The following response will be provided if a checklist is already associated with
the given ticket. This will also be sent with a 409 Conflict
status.
{
"error": "NotPermitted",
"message": "Ticket is already assigned to a checklist"
}