OBJECT

Shipment

Shipment tracking information.

link GraphQL Schema definition

  • type Shipment implements Node {
  • # Carrier
  • carrier: String!
  • createdAt: ISO8601DateTime!
  • # The date the shipment was dispatched.
  • dispatchedAt: ISO8601DateTime!
  • externalIds: [ExternalID!]!
  • # Homepage Link URL
  • homepageLink: String
  • id: ID!
  • invoice: Invoice!
  • legacyId: Int!
  • # Metadata key/values
  • metadata: [Metadatum!]!
  • # Note on the shipment
  • note: String
  • # Where the item was shipped from (Seller only)
  • shippedFrom: Address
  • shippedItems: [ShippedItem!]
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • statusLog(after: String, before: String, first: Int, last: Int): ShipmentStatusConnection
  • # Tracking Link URL
  • trackingLink: String
  • # Tracking #
  • trackingNumber: String!
  • updatedAt: ISO8601DateTime!
  • }