- Pass the ticket to a colleague
- Forward the ticket to an external party
- Delegate and let the system pick the next owner
Ask a colleague for help
- Reassign the ticket.
- Add an internal message with your question.
- Update the last modified timestamps.
- Optionally add the ticket to the previous owner’s favorites list, as a reminder to follow up.
Forward to an external party
A common scenario when you need to get advice from a sub-supplier.Bool sendMessages(String subject, StringMatrix recipients, Bool fromCust, String messages, Integer msgId, String comment)
Forwards the listed messages. In the generated email, the comment is inserted at the top and followed by the messages, each separated by a line.
Recipients example:
To | John Doe <john.doe@john.doe> Cc | Jane Doe <jane.doe@jane.doe>
Void delegate()
Delegates a ticket to a user according to the rules of the ticket’s category.You must call
save() to do the action.Void delegate(Integer notUser)
A variant ofdelegate() that lets you exclude a user from the pool of possible assignees.
For example, if the 2nd owner also passes on the ticket and you want to avoid re-assigning to the original owner.