OBJECT

Shop

link GraphQL Schema definition

  • type Shop {
  • # Internal code for which the shop is referenced.
  • code: String!
  • # Serialized list of countries to return from
  • countries: String!
  • # Serialized list of options for select of countries to return from
  • countryOptions: String!
  • # Creation time for the shop
  • createdAt: ISO8601DateTime!
  • # Paperless UPS label is allowed
  • destinationCanPaperless: Boolean!
  • # Price which the user needs to pay to get its dropoff letterbox parcel returned
  • dropoffLetterboxPrice: Int
  • # Price which the user needs to pay to get its dropoff normal size parcel returned
  • dropoffParcelPrice: Int
  • # Approving shipments is enabled
  • gatekeeperEnabled: Boolean!
  • # Indicates whether the shop offers free shipments or the users pay for this
  • # service.
  • hasFreeShipments: Boolean
  • # Indicates whether the shop has a hired Retunista to pickup parcels in the
  • # Netherlands or not.
  • hasNationalCoverage: Boolean
  • # Unique identifier for the shop.
  • id: String!
  • # Show the insurance tick in the shipments form
  • insuranceOptionEnabled: Boolean!
  • # Name of the shop which is presented to the end consumer
  • name: String!
  • # UPS, DHL and so on
  • networks: [String!]
  • # Price that can be taken or not
  • optionalPrice: Int
  • # Paperless UPS label is allowed
  • paperlessOrigins: [String!]!
  • # Price which the user needs to pay to get its pickup parcel returned
  • pickupPrice: Int
  • # Lists of prices for different shipping networks
  • priceLists: [PriceList!]!
  • # Repair shop?
  • repairShop: Boolean!
  • # Serialized options for return reason select
  • returnReasons: String!
  • # List of cities where this shop can offer same-day pickups
  • sameDayDeliveryCities: [String!]!
  • # Url of the shop
  • shopUrl: String
  • # Show field name
  • showNameField: Boolean!
  • # Show return reasons or not
  • showReturnReasons: Boolean!
  • # Slug used as a subdomain in the Returnista portal for the shop.
  • slug: String!
  • # Terms and conditions URL
  • termsAndConditionsUrl: String
  • # Last time when the shop was updated
  • updatedAt: ISO8601DateTime!
  • }