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": "4cbed91f-79f4-4ecb-acdd-9be195152fed"
}
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": "2022-08-03T16:02:32.3588263+01:00",
"pkOrderId": "d5aafb3b-8427-4b8f-88ed-4d00a0092dbf",
"FulfillmentLocationId": "3ab55ef7-4833-4fc9-a0b4-c675e66776dd",
"Order": 7
}
]
}