Get a list of open orders bound to a purchase order item
Name | Type | Description |
---|---|---|
request | Get_PurchaseOrderItem_OpenOrdersRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/PurchaseOrder/Get_PurchaseOrderItem_OpenOrders
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.
request={
"pkPurchaseItemId": "9752038c-b4cf-43b0-b908-cbd339f24918"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"OpenOrders": [
{
"RowId": 1,
"NumOrderId": 2,
"FullName": "sample string 3",
"DispatchBy": "2023-01-10T13:49:50.1062831+00:00",
"pkOrderId": "91ee486f-adce-45f3-a3a4-26bf7d47299c",
"FulfillmentLocationId": "b25948cf-5a26-4b51-b1b7-c2624d56e5b3",
"Order": 7
}
]
}