Update Ticket Assignee
All API requests should contain authorization headers.
Request
Query Parameters
ticketId
integer
yes
Id of ticket you want to update.
Request Body
The request body must contain the model with the Id of the teammate (as assigneeId
) and the current user assigned to the ticket (as previousAssigneeId
). Send assigneeId
as null if you want to set the ticket as unassigned.
You can obtain the list of teammates by requesting the corresponding teammates endpoint.
You can retrieve the current assigned user value from the response from get ticket by id endpoint (property lockedBy
in the response object).
You cannot assign a user, which is not a part of the team (such as a client, vendor, or read-only user).
assigneeId
Guid
yes
Unique Id of a teammate who is assigned to the ticket. Set to null
if the ticket should be unassigned
previousAssigneeId
Guid
yes
Unique Id of the current teammate who is assigned to the ticket. If the ticket is unassigned, the value should be set to null
Response
Last updated