GET Support for Additional Entities
To enable seamless data retrieval from external systems for reporting purposes, REST APIs are necessary. We have extended GET support to the following entities to facilitate easy access to relevant records.
cc_adjustment_approval_rule
This entity is used to get the list of the cycle count adjustment approval rules present in the system. These rules can be utilized to feed an external system or referenced outside of WMS, providing flexibility and integration with other platforms.
- To fetch all results, use the following URL:
GET .../lgfapi/v10/entity/cc_adjustment_approval_rule/
- To fetch only one result based on ‘ID’, search with a specific 'ID' in the following URL:
GET .../lgfapi/v10/entity/cc_adjustment_approval_rule/{id}
- In the same way, the support is extended for HEAD Request Method using the following URL:
HEAD .../lgfapi/v10/entity/cc_adjustment_approval_rule/{id}
task_type
This entity is used to get the list of task types present in the system. You can leverage these task types to track and analyze performance based on task type and task completion time.
- To fetch all results, use the following URL:
GET .../lgfapi/v10/entity/task_type/
- To fetch only one result based on ‘ID’, search with a specific 'ID' in the following URL:
GET .../lgfapi/v10/entity/task_type/{id}
Steps to Enable
You don't need to do anything to enable this feature.