# `api.lots.get_overrides` > `POST /Lot/get-overrides` — Catalog **Python** ```python api.lots.get_overrides(customer_item_ids: List[str]) -> list[LotOverrideDto] ``` **CLI** ```bash ab lots get_overrides ``` Retrieve lot overrides for the given customer item IDs. Args: customer_item_ids: List of customer item ID strings. Returns: list[LotOverrideDto]: Override data for matched lots. ## Response Returns a list of `List[LotOverrideDto]`. | Field | Type | Required | Description | |---|---|---|---| | `qty` | `Optional[int]` | no | Quantity | | `l` | `Optional[float]` | no | Length | | `w` | `Optional[float]` | no | Width | | `h` | `Optional[float]` | no | Height | | `wgt` | `Optional[float]` | no | Weight | | `value` | `Optional[float]` | no | Declared value | | `cpack` | `Optional[str]` | no | Container pack ID | | `description` | `Optional[str]` | no | Item description | | `forceCrate` | `Optional[bool]` | no | Force crating flag | | `itemId` | `Optional[str]` | no | Item ID (string per swagger; ABConnectTools treated as int) | | `notes` | `Optional[str]` | no | Free-text notes | | `notedConditions` | `Optional[str]` | no | Recorded conditions | | `doNotTip` | `Optional[bool]` | no | Do-not-tip flag | | `commodityId` | `Optional[str]` | no | Commodity / HS code ID (string per swagger) | | `customerItemId` | `Optional[str]` | no | Customer item ID the override applies to | --- [← Back to api.lots](../lots.md)