object Shipment

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

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

order_idString

Public API order ID that identifies the related record.

user_idString

Public API user 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.

pending_shipment_idString

Public API pending shipment ID that identifies the related record.

addressAddress

Address details for this shipment.

profileString

Profile for this shipment.

picked_upBoolean

Whether the carrier picked up this shipment.

needs_refundBoolean

True when this shipment needs refund; false otherwise.

refundedBoolean

Whether this shipment has refunded label charges.

deliveredBoolean

Whether the carrier marked this shipment as delivered.

shipped_off_shipheroBoolean

Whether this shipment was shipped outside Shiphero.

dropshipmentBoolean

Whether this shipment is a dropshipment.

completedBoolean

This field indicates if store was notified about the shipment. It should be 'true' by default and 'false' when using the Bulk Ship UI.

created_dateISODateTime

Created date in ISO-8601 date or datetime format, returned in UTC when time is included.

line_itemsShipmentLineItemConnection

List of line items associated with this shipment.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
shipping_labels[ShippingLabel]

List of shipping labels for this shipment.

warehouseWarehouse

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

orderOrder

Order associated with this shipment.

total_packagesInt

Total packages as a numeric value.

ready_to_shipString

Readiness flag for this shipment; use shipment status fields for current workflow state.

Referenced By

Example

{
  "id": "UmVjb3JkOjEyMzQ=",
  "legacy_id": 1234,
  "order_id": "U2hpcG1lbnQ6MTIzNA==",
  "user_id": "U2hpcG1lbnQ6MTIzNA==",
  "warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
  "pending_shipment_id": "U2hpcG1lbnQ6MTIzNA==",
  "address": {address1: "123 Fulfillment Ave", city: "New York", country: "US"},
  "profile": "default",
  "picked_up": true,
  "needs_refund": true,
  "refunded": true,
  "delivered": true,
  "shipped_off_shiphero": true,
  "dropshipment": true,
  "completed": true,
  "created_date": "2026-07-09T15:30:00Z",
  "line_items": [{sku: "BLUE-TEE-M", quantity: 2}],
  "shipping_labels": [[{tracking_number: "1Z999AA10123456784", carrier: "ups"}]],
  "warehouse": {id: "V2FyZWhvdXNlOjEyMzQ=", identifier: "Primary Warehouse"},
  "order": {id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"},
  "total_packages": 100,
  "ready_to_ship": "pending"
}