object ShippingPlan

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

account_idString

Public API account ID that identifies the related record.

warehouse_idString

Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects.

created_atISODateTime

Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

fulfillment_statusString

Current fulfillment status; use the API status values returned by this field when filtering or updating.

warehouse_noteString

Warehouse note for this shipping plan.

vendor_po_numberString

Vendor po number for this shipping plan.

subtotalString

Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value.

shipping_priceString

Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value.

total_priceString

Customer-facing charge amount as a decimal monetary value in the order currency; distinct from value/customs_value used for declared value.

shipping_methodString

Carrier service or shipping method code.

shipping_carrierString

Carrier name or carrier code used for shipping.

shipping_nameString

Shipping name for this shipping plan.

tracking_numberString

Carrier tracking number for the shipment or label.

warehouseWarehouse

Warehouse display value or nested warehouse object for this record. Use warehouse_id when passing a warehouse reference.

pdf_locationString

URL for the PDF location resource.

line_itemsShippingPlanLineItemConnection

List of line items associated with this shipping plan.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
packagesShippingPlanPackageConnection

List of packages associated with this shipping plan.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
palletsShippingPlanPalletConnection

Pallets for this shipping plan.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
origin_of_shipmentString

ISO country code for origin of shipment.

tracking_numbersShippingPlanTrackingNumberConnection

Tracking numbers for this shipping plan.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "account_id": "QWNjb3VudDoxMjM0",
  "warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
  "created_at": "2026-07-09T15:30:00Z",
  "fulfillment_status": "pending",
  "warehouse_note": "Customer requested expedited handling.",
  "vendor_po_number": "PO-100045",
  "subtotal": "19.99",
  "shipping_price": "19.99",
  "total_price": "19.99",
  "shipping_method": "ups_ground",
  "shipping_carrier": "ups",
  "shipping_name": "July FBA Shipment",
  "tracking_number": "1Z999AA10123456784",
  "warehouse": {id: "V2FyZWhvdXNlOjEyMzQ=", identifier: "Primary Warehouse"},
  "pdf_location": "https://example.com/labels/SHIP-1001.pdf",
  "line_items": [{sku: "BLUE-TEE-M", quantity: 2}],
  "packages": [{id: "U2hpcHBpbmdQbGFuUGFja2FnZToxMjM0"}],
  "pallets": [{id: "U2hpcHBpbmdQbGFuUGFsbGV0OjEyMzQ="}],
  "origin_of_shipment": "US",
  "tracking_numbers": [{id: "U2hpcHBpbmdQbGFuVHJhY2tpbmdOdW1iZXI6MTIzNA=="}]
}