OBJECT
Shipment
A request from an end user (final consumer) to handle the return for an online order.
link GraphQL Schema definition
- type Shipment {
- # Full Address made of 'ship_from_' fields
- : String
- # Status of approval
- : String!
- # Emergency alert that can be set to cancel the email reminders before a pickup.
- : Boolean!
- # Does user want to pay a fee to ensure the parcels
- : Boolean
- # Note that the user left to the courier
- : String
- # Country
- : String
- # Timestamp of the pickup creation
- : ISO8601DateTime!
- # Public name of drop off provider
- : String
- # Url of the possible drop off locations close to end-user
- : String
- # Email of the user who made the booking.
- : String
- # Shortcut to discern whether a pickup has delivery instructions.
- : Boolean!
- # Does it have an active investigation
- : Boolean!
- # Shortcut to discern whether a pickup has notes or not.
- : Boolean!
- # Unique identifier of the pickup
- : String!
- # Does user want to pay a fee to ensure the parcels
- : Boolean
- # Show investigation associated
- : Investigation
- # Dropoff label url
- : String
- # User's locale
- : String!
- # Full name of the user who made the booking.
- : String
- # Logistical network used in the return of this parcel
- : Networks
- # Reminders or comments about this pickup written by a Customer Service Agent.
- : [Note!]!
- # The number of boxes to be picked up.
- : Int
- # Unique identifier within the shop ERP system.
- : String
- # Last payment status
- : String
- # Link where end users can pay for their orders
- : String
- # Phone of the user who made the booking.
- : String
- # Shipment' price
- : Int!
- # Latest shipment reference received in the system
- : String
- # Reason why the final user wants to perfom a return.
- : ReturnReason
- # Type of return: pickup at home or dropoff.
- : String!
- # Address line where the parcel needs to be picked up.
- : String
- # City where the parcel needs to be picked up.
- : String
- # Country code where the parcel needs to be picked up.
- : String
- # House number where the parcel needs to be picked up.
- : String
- # Postal code where the parcel needs to be picked up.
- : String
- # Street where the parcel needs to be picked up.
- : String
- # City where the parcel needs to be drop off.
- : String!
- # House number where the parcel needs to be drop off.
- : String!
- # Postal code where the parcel needs to be drop off.
- : String!
- # Street where the parcel needs to be drop off.
- : String!
- # Shop which owns this pickup.
- : Shop!
- # Shop name which owns this pickup.
- : String!
- # Size of parcel
- : String!
- # Earliest desired time for the parcel to be pickedup.
- : ISO8601DateTime
- # Reflects the current progress of the return process for this pickup.
- : String!
- # Latest desired time for the parcel to be pickedup.
- : ISO8601DateTime
- # Did the end-user agree on terms and conditions?
- : Boolean!
- # Identifier for the desired timeslot
- : String
- # List of tracking updates for this pickup.
- : [TrackingUpdate!]!
- # Tracking url
- : String
- # Timestamp of the last time that the pickup was updated.
- : ISO8601DateTime!
- # Indicates if the user should pay in the future.
- : Boolean
- # Item name that customer wants to exchange return item with
- : String
- # Indicates if the order has been paid.
- : Boolean
- }