Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

Orders /ProcessOrdersInBatch

Allows 250 calls per minute

Response: List<ProcessOrderResult>



Process a list of orders

Parameters

NameTypeDescription
ordersIdsList<Guid>List of orders ids
locationIdNullable<Guid>User location
contextClientContextInformation about where the call came from

Example Request

The following request format is required for this method.

Endpoint URL

GET | POST https://eu-ext.linnworks.net/api/Orders/ProcessOrdersInBatch

Headers

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

Request Body

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"
}

Response

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"
  }
]