- 1 Minute to read
- PDF
Order Assignment
- 1 Minute to read
- PDF
Order Assignment
This API method is used to set specific assignments to orders. The order status will be set to “Waiting for Picking.” An error is returned if an order, warehouse, or user is not found.
Request Header
Client
Accept: application/json
Security
Authorization: <ClientKey>
Transport
Host: api.withoutwire.com
Verb
PUT
Example
PUT https://api.withoutwire.com/integration/order/assignment
Accept: application/json
Authorization: <ClientKey>
Content-Type: application/json
Host: api.withoutwire.com
Content-Length: 103
Expect: 100-continue
Connection: Keep-Alive
Request Body:
[
{
"OrderNumber": "", //Required - must be a valid order
"WarehouseName": "", //Required - must be a valid warehouse
"Assignments":
[
"" //Required - must be a valid user
]
}
]
Response Body: "Order(s) assigned successfully"