Execute a Cycle Count Task Creation Template
This API allows external planning systems to execute a Cycle Count (CC) Task Creation template in WMS.
Note: This API supports execution of only Cycle Count task creation
templates.
To execute the template, you can use either ID or description of a task creation template.
URL to Execute a CC Task Creation Template Using Task Template’s ID
POST .../wms/lgfapi/v10/entity/task_template/{id}/run_cc_template/
Request Body
Not required as specific task creation template id is passed in the URL.
Sample Response
204 No Content
URL to Execute a CC Task Creation Template Using Task Template Description
POST .../wms/lgfapi/v10/entity/task_template/run_cc_template/
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. |
| description | String | Yes | CC Task Creation template’s description. |
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",
"description": "SS CC Location by Item"
}
}
Sample Response
204 No Content