All the endpoints that can be called on the Ticket controller.
Endpoints that require the TICKET_READ permission:
Endpoints that require the TICKET_CREATE permission:
Endpoints that require the TICKET_UPDATE permission:
Endpoints that require the TICKET_DELETE permission:
Endpoints that require the SET_STATUS permission:
PUT solveUnfinishedTickets
Endpoints that require the TICKET_BATCH permission:
index
get
Returns all tickets with optional filters such as search queries, views and result limits.
applyViewstring · min: 2OptionalThe view to get the tickets from.
Default: ""Pattern: ^[0-9a-zA-Z\-\_]+$ querystring · min: 1OptionalDefault: ""
itemStartnumberOptionalDefault: 0
itemLimitnumber · max: 9999OptionalDefault: 15
searchArchivedstring · enumOptionalDefault: noPossible values:
statusstring · enumOptionalPossible values:
index
post
Creates a new empty ticket.
Data can be added directly, but also through other /ticket endpoints.
Body
directionstring · enumRequiredPossible values:
fromstring · min: 2Required
fromNamestring · min: 1OptionalDefault: ""
tostring · min: 2Required
titlestring · min: 2Required
assignedGroupIDnumberOptionalDefault: 0
item
get
Returns all the data of this ticket.
reloadbooleanOptionalChecks if the ticket is already open. If not, register that it has been opened.
Default: false getTicketHistorybooleanOptionalSend along this parameter with a value to get the ticket history.
Default: false item
put
Updates the fields of this ticket.
Body
externalPrimaryIDstringOptionalThe external primary ID of the customer this ticket belongs to.
statusstring · enumOptionalPossible values:
item
delete
Deletes all the data of this ticket.
multi
delete
Deletes multiple tickets given in an array.
Body
ticketIDsnumber[]Required
setStatus
post
Sets the status of the tickets given in an array.
Body
statusstring · enumRequiredPossible values:
ticketIDsnumber[]Required
setPriority
post
Sets the priority of the tickets given in an array.
Body
prioritystring · enumRequiredPossible values:
ticketIDsnumber[]Required
unlinkCustomerFromTicket
post
Unlinks the customer from the ticket provided.
Body
batch
post
Performs miscellaneous actions on tickets given in an array.
Body
TicketIDsstringOptionalCan be multiple ID's comma-separated (space allowed).
Pattern: ^[0-9, ]+$ Last updated