Bulk Reject/Recount Cycle Count Adjustment Records
This API is used to bulk reject/recount pending Cycle Count (CC) adjustment record(s).
URL
POST .../wms/lgfapi/v10/entity/cc_adjustment_hdr/bulk_reject/
Request Parameters
| Category | Parameter/Field Name | Type | Required | Description |
|---|---|---|---|---|
| parameters | facility_id | Integer | Facility context by id. | |
| parameters | facility_id__code | String | Facility context by code. | |
| parameters | company_id | Integer | Company context by id. | |
| parameters | company_id__code | String | Company context by code. | |
| parameters | group_nbr__in | String | Yes | Group numbers of CC adjustment records. You can pass a single or multiple group numbers. |
| options | comment | String | CC adjustment rejection comments. This field supports a maximum of 250 characters. If you pass a value longer than the 250 characters, the API fails with an error message. | |
| options | commit_frequency | Integer |
Frequency at which the changes are applied to each resource or group of resources being processed. Supported values:
|
Note:
- This API is supported only in the synchronous mode.
- If facility or company context isn’t provided, the API will use your default facility/company.
Request Body
{
"parameters":
{
"facility_id": 648,
"company_id": 369,
"group_nbr__in": [101, 102, 103]
},
"options":
{
"comment": "CC rejected due to conflict",
"commit_frequency": 1
}
}