# `api.jobs.get_calendar_items` > `GET /job/{jobDisplayId}/calendaritems` — ACPortal **Python** ```python api.jobs.get_calendar_items(job_display_id: int) -> list[CalendarItem] ``` **CLI** ```bash ab jobs get_calendar_items ``` GET /job/{jobDisplayId}/calendaritems (ACPortal) ## Response Returns a list of `List[CalendarItem]`. | Field | Type | Required | Description | |---|---|---|---| | `id` | `Optional[str]` | no | Item UUID | | `title` | `Optional[str]` | no | Item title | | `start` | `Optional[str]` | no | Start datetime | | `end` | `Optional[str]` | no | End datetime | | `name` | `Optional[str]` | no | Item name/description | | `quantity` | `Optional[int]` | no | Quantity | | `length` | `Optional[float]` | no | Length dimension | | `width` | `Optional[float]` | no | Width dimension | | `height` | `Optional[float]` | no | Height dimension | | `weight` | `Optional[float]` | no | Weight | | `value` | `Optional[float]` | no | Declared value | | `notes` | `Optional[str]` | no | Item notes | | `customerItemId` | `Optional[str]` | no | Customer item reference | | `notedConditions` | `Optional[str]` | no | Noted conditions for item | --- [← Back to api.jobs](../jobs.md)