Bulk Cancel Cycle Count Adjustment Records

This API is used to bulk cancel pending or in-progress Cycle Count (CC) adjustment record(s).

URL

POST .../wms/lgfapi/v10/entity/cc_adjustment_hdr/bulk_cancel/

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 commit_frequency Integer

Frequency at which the changes are applied to each resource or group of resources being processed.

Supported values:

  • 0 (Default) = Roll back on first error.
  • 1 / Any integer > 0 = Commit per object.
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":
    {
        "commit_frequency": 1
     }
}