Deallocate Work Order
This API allows you to de-allocate a specific work order.
URL
POST .../wms/lgfapi/v10/entity/work_order/deallocate
Request Parameters
| Parameter/Field Name | Type | Required | Description |
| facility_id | Integer | Conditional | Facility context by id. |
| facility_id__code | String | Conditional | Facility context by code. |
| company_id | Integer | Conditional | Company context by id. |
| company_id__code | String | Conditional | Company context by code. |
| work_order_nbr | String | Yes | Specify the work order number to deallocate. |
Note:
- Facility and Company details are mandatory to send.
- Either facility_id or facility_id__code is mandatory to send.
- Either company_id or company_id__code is mandatory to send.
Request Body
{
"parameters":{
"company_id__code": "Company1",
"facility_id__code": "Facility1",
"work_order_nbr": 345
}
}
Sample Response
202 Accepted