input CreateLocationsCycleCountInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
name | String! | Name for the cycle count batch. |
warehouse_id | String! | ID of the warehouse to count. |
due_date | ISODateTime | Due date for the cycle count. Defaults to 30 days from now. |
sort_by | String | Sort order for the generated cycle count tasks. Supported values: QUANTITY_ASC, QUANTITY_DESC, LOCATION_NAME_ASC, LOCATION_NAME_DESC, LAST_COUNTED_ASC, LAST_COUNTED_DESC, ITEM_NAME_ASC, ITEM_NAME_DESC. |
max_items | Int | Maximum number of locations to include in the batch. |
assigned_user_ids | [String] | User IDs to assign to this cycle count. |
prefixes | [String] | Location name prefixes to include (e.g. ['A-', 'B-']). |
location_type_ids | [String] | Location type IDs to include. |
client_ids | [String] | Account IDs of clients to include (for 3PL accounts). |
exclusion_filters | ExclusionFiltersInput | Exclusion filters to narrow the set of locations included. |
Referenced By
- cycle_count_locations_create Mutation
Example
{
"customer_account_id": "abc123",
"name": "abc123",
"warehouse_id": "abc123",
"due_date": "abc123",
"sort_by": "abc123",
"max_items": 987,
"assigned_user_ids": "abc123",
"prefixes": "abc123",
"location_type_ids": "abc123",
"client_ids": "abc123",
"exclusion_filters": ExclusionFiltersInput
}