# `api.jobs.get_packaging_containers` > `GET /job/{jobDisplayId}/packagingcontainers` — ACPortal **Python** ```python api.jobs.get_packaging_containers(job_display_id: int) -> list[PackagingContainer] ``` **CLI** ```bash ab jobs get_packaging_containers ``` GET /job/{jobDisplayId}/packagingcontainers (ACPortal) ## Response Returns a list of `List[PackagingContainer]`. | Field | Type | Required | Description | |---|---|---|---| | `name` | `Optional[str]` | no | Container name | | `description` | `Optional[str]` | no | Container description | | `length` | `Optional[float]` | no | Length | | `width` | `Optional[float]` | no | Width | | `height` | `Optional[float]` | no | Height | | `weight` | `Optional[float]` | no | Weight | | `totalCost` | `Optional[float]` | no | Total cost | --- [← Back to api.jobs](../jobs.md)