# `api.jobs.add_freight_items` > `POST /job/{jobDisplayId}/freightitems` — ACPortal **Python** ```python api.jobs.add_freight_items(job_display_id: int, *, data: FreightItemsRequest | dict) -> None ``` **CLI** ```bash ab jobs add_freight_items [--data ...] ``` POST /job/{jobDisplayId}/freightitems. Args: job_display_id: Job display ID. data: Freight items payload. Accepts a :class:`FreightItemsRequest` instance or a dict. Request model: :class:`FreightItemsRequest` ## Request body — `FreightItemsRequest` | Field | Type | Required | Description | |---|---|---|---| | `jobModifiedDate` | `Optional[str]` | no | Job modified timestamp | | `forceUpdate` | `Optional[bool]` | no | Force update flag | | `freightItems` | `Optional[list[FreightShipment]]` | no | Freight items to save | ## Response No response body. --- [← Back to api.jobs](../jobs.md)