Last updated
Last updated
After each ticket update, orders are automatically generated. Each order includes contextual information about the products and specifies the order endpoint where the products will be processed.
Order is represented by class.
GET
http://{server-address}/orders
Returns all orders that matches query parameters. Result is of type .
GET
http://{server-address}/orders/{id}
POST
http://{server-address}/orders
Required rights
POST
http://{server-address}/orders/{id}/status
Required rights
POST
http://{server-address}/orders/{id}/items/{itemId}/status
Required rights
POST
http://{server-address}/orders/{id}/endpoints/{endpointName}/status
Required rights
DELETE
http://{server-address}/orders/{id}
Required rights
Result is of type .
Invokes order processing. Method accepts in request body, that is used to specify orders to be processed, using identifiers. Collection of all affected models is returned.
Authorized user must have OrderProcess
assigned.
Manually changes status for entire order (for all items and all associated order endpoints). Method accepts in request body. Updated is returned.
Authorized user must have OrderUpdate
assigned.
Manually changes order status for specified . Status is set for all associated with given order item. Method accepts in request body. Updated is returned.
Authorized user must have OrderUpdate
assigned.
Manually change the order status for a specified on a specific . Method accepts in request body. Updated is returned.
Authorized user must have OrderUpdate
assigned.
Authorized user must have OrderDelete
assigned.