POST api/Tickets/ChangeSolver

Changes the ticket's operator. Only operator can do it.

Request Information

URI Parameters

None.

Body Parameters

ChangeSolverPost
NameDescriptionTypeAdditional information
TicketId

(Required) The ticket Id where to change the solver.

integer

None.

UserProviderKey

(Required) The new solver provider key.

string

None.

Request Formats

application/json, text/json

Sample:
{
  "TicketId": 1,
  "UserProviderKey": "sample string 2"
}

application/xml, text/xml

Sample:
<ChangeSolverPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestorApiDataStructures.Posts">
  <TicketId>1</TicketId>
  <UserProviderKey>sample string 2</UserProviderKey>
</ChangeSolverPost>

Response Information

Resource Description

IHttpActionResult

None.