Process a list of orders
Name | Type | Description |
---|---|---|
ordersIds | List<Guid> | List of orders ids |
locationId | Nullable<Guid> | User location |
context | ClientContext | Information about where the call came from |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Orders/ProcessOrdersInBatch
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
ordersIds=[
"9ed29f64-1ade-43a4-9d19-75736057998e"
]&locationId=bc20cf2b-0ce5-4dc4-bfab-c79bd3e4a2ff&context={
"Module": "sample string 1"
}
This is an example of the response JSON. Results will vary depending on your data.
[
{
"OrderId": "b43ac304-9769-48f2-b098-06da2c995beb",
"Processed": true,
"Error": "sample string 3"
}
]