OBJECT

ReturnShipment

Shipment tracking information.

link GraphQL Schema definition

  • type ReturnShipment implements Node {
  • attachments: [Image!]!
  • # Carrier
  • carrier: ShipmentCarrier!
  • createdAt: ISO8601DateTime!
  • # Seller specified URL for a third-party drop-off location website
  • dropOffUrl: String
  • externalIds: [ExternalID!]!
  • id: ID!
  • legacyId: Int!
  • # Metadata key/values
  • metadata: [Metadatum!]!
  • # Note on the shipment
  • note: String
  • refundRequest: RefundRequest!
  • shippedItems: [ReturnShippedItem!]
  • # 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 #
  • trackingNumber: String!
  • updatedAt: ISO8601DateTime!
  • }