# `api.jobs.shipment.get_export_data` > `GET /job/{jobDisplayId}/shipment/exportdata` — ACPortal **Python** ```python api.jobs.shipment.get_export_data(job_display_id: int) -> ShipmentExportData ``` **CLI** ```bash ab jobs shipment get_export_data ``` ``GET /job/{jobDisplayId}/shipment/exportdata`` ## Response Returns `ShipmentExportData`. | Field | Type | Required | Description | |---|---|---|---| | `exportData` | `Optional[dict]` | no | Shipment export payload | | `valuesSpecified` | `Optional[dict]` | no | Specified value flags | | `soldTo` | `Optional[dict]` | no | Sold-to contact and address | | `commodities` | `Optional[list]` | no | Commodity line items | | `packingInfo` | `Optional[list]` | no | Packing information entries | | `customsValue` | `Optional[float]` | no | Customs declared value | | `invoiceNumber` | `Optional[str]` | no | Commercial invoice number | | `purchaseOrderNumber` | `Optional[str]` | no | Purchase order number | | `termsOfSale` | `Optional[str]` | no | Incoterms / terms of sale | | `exporterTaxId` | `Optional[str]` | no | Exporter tax identifier | | `consigneeTaxId` | `Optional[str]` | no | Consignee tax identifier | | `totalCosts` | `Optional[dict]` | no | Aggregate cost breakdown | | `uspsSpecific` | `Optional[dict]` | no | USPS-specific export fields | | `fedExSpecific` | `Optional[dict]` | no | FedEx-specific export fields | | `upsSpecific` | `Optional[dict]` | no | UPS-specific export fields | --- [← Back to api.jobs](../jobs.md)