Process a specific order
Name | Type | Description |
---|---|---|
orderId | Guid | Order id |
scanPerformed | Boolean | Indicate if the scan has been performed |
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/ProcessOrder
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.
orderId=95690415-8118-469c-bddc-6b72a061bb78&scanPerformed=true&locationId=5f78879b-c61d-4737-a26a-6512fd957a95&context={
"Module": "sample string 1"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"OrderId": "7b35428a-732e-4063-9825-a039929c09d0",
"Processed": true,
"Error": "sample string 3"
}