GraphQL OBJECT

RegionConfiguration

Region you specify for shipping configurations, price configurations, marketing campaigns, and reporting of your products.

link Definition

  • type RegionConfiguration {
  • # Unique ID of the region configuration.
  • id: Int!
  • # Client account.
  • client: Client
  • # Name of the region configuration.
  • name: String
  • # Date and time when the region configuration was created.
  • creationDate: DateTime
  • # Date and time when the region configuration was last modified.
  • lastModifyDate: DateTime
  • # User who created the region configuration.
  • createdBy: UserAccount
  • # User who last modified the region configuration.
  • lastModifiedBy: UserAccount
  • # Whether countries and states were added to the region configuration using an
  • # include or exclude list.
  • listType: ListType
  • # List of notifications in which the region configuration is used.
  • referringNotifications: [Notification]
  • # List of shipping configurations in which the region configuration is used.
  • referringShippingConfigurations: [ShippingConfiguration]
  • # List of countries that are either part of the region configuration (ListType:
  • # Include) or not part of the region configuration (ListType: Exclude).
  • countries: [Country]
  • # List of states that are either part of the region configuration (ListType:
  • # Include) or not part of the region configuration (ListType: Exclude).
  • states: [State]
  • # List of applicable price configurations in which the region configuration is
  • # used.
  • referringApplicablePriceConfigurations: [ApplicablePriceConfiguration]
  • # List of catalogs in which the client region is used for filtering.
  • referringCatalogs: [Catalog]
  • }