GraphQL OBJECT

Client

Account information for a specific client account.

link Definition

  • type Client {
  • # Unique ID of the client account.
  • id: Int
  • # Flag that states if the client is active.
  • isActive: Boolean!
  • # Date and time of the first sale.
  • timeOfFirstSale: DateTime
  • # Flag that states if the client allows us to act as a merchant.
  • allowUsIncAsMerchant: Boolean
  • # Internal comment for the client account.
  • internalComment: String
  • # List of support contacts.
  • supportContacts: [SupportContact]
  • # The currency used for payout and clearing. This currency is also used in
  • # reports.
  • payoutAndClearingCurrency: Currency
  • # Default currency for the client account in which products are priced. If no
  • # price is defined for a currency, the price for that currency is converted from
  • # the base currency based on the daily floating exchange rate.
  • defaultBaseCurrency: Currency
  • # Default language for the client account in which product information must be
  • # entered. You can override the default language on product level.
  • defaultBaseLanguage: Language
  • # All currencies in which products can be priced.
  • availableCurrencies: [Currency]
  • # All languages in which product information can be entered.
  • availableLanguages: [Language]
  • # Full name of the client account.
  • fullName: String
  • # Short name of the client account.
  • internalName: String
  • # Credit card descriptor of the client.
  • creditCardDescriptor: String
  • # Payment delinquency configuration of the client.
  • paymentDelinquencyConfiguration: PaymentDelinquencyConfiguration
  • # Default support contact for the client account.
  • defaultSupportContact: SupportContact
  • # Client catalog.
  • defaultCatalog: Catalog
  • # Security policy of the client.
  • securityPolicy: SecurityPolicy
  • # Shipping configuration of the client.
  • defaultShippingConfiguration: ShippingConfiguration
  • # Settings for refund policy.
  • refundPolicySettings: RefundPolicySettings
  • # Short name of the client account.
  • shortName: String
  • # All policies for the client account.
  • #
  • # Arguments
  • # languageIds: The language filter (defaults to EN)
  • policies(languageIds: [ClientPolicyLanguagesEnum]): [ClientPolicy]
  • extendedSettings: ExtendedClientSettings
  • # Base url of the client.
  • baseUrl: String
  • # Context containing the right resources for cSP or MoR.
  • #
  • # Arguments
  • # languageId: The language the context resources will be provided
  • # in.
  • # countryId: The country the context resources will be provided
  • # for. If not set, this value will be taken from client's accounting contact. In
  • # case accounting contact is not set, the main contact is used.
  • # resourceSearchTerms: Pairs of Resource Contexts and Element
  • # names.
  • sellingEntityContextResources(
  • languageId: LanguageEnum,
  • countryId: CountryEnum,
  • resourceSearchTerms: [ResourceEntityContextInput]!
  • ): [SellingEntityContextResourceItem]
  • # Business model of the client.
  • businessModel: ClientBusinessModel
  • # Client segment of the client.
  • clientSegment: ClientSegment
  • # Cleverbridge contacts for the client.
  • cleverbridgeContacts: CleverbridgeContacts
  • # IDP Identifier associated with client.
  • idpIdentifier: String
  • # Features available for the client.
  • availableFeatures: [Feature]
  • # Client link configuration.
  • linkConfiguration: ClientLinkConfiguration
  • # Client group of the client.
  • clientGroup: ClientGroup
  • # Status of the client.
  • status: ClientStatus
  • # Office of the client.
  • office: Office
  • # Client contacts.
  • clientContacts: [ClientContact]
  • # Client payout information.
  • payoutInformation: [PayoutInformation]
  • # Client addons privilege set.
  • clientAddonsPrivilegeSet: [PrivilegeSet]
  • # Flag that states if the client allows only secure notifications.
  • onlySecureNotifications: Boolean
  • # Service endpoint for the upgrade management service.
  • upgradeManagementServiceEndpoint: ServiceEndpoint
  • # Subscription settings for the client.
  • subscriptionSettings: ClientSubscriptionSettings
  • }

link Required by