GraphQL INPUT_OBJECT

UpdateClientInput

link Definition

  • input UpdateClientInput {
  • # Id of the client.
  • id: Int!
  • # Full company name.
  • fullName: String
  • # Short company name.
  • shortName: String
  • # Internal company name.
  • internalName: String
  • # Client status.
  • statusId: ClientStatusEnum
  • # Currency.
  • payoutAndClearingCurrencyId: CurrencyEnum
  • # Default base currency.
  • defaultBaseCurrencyId: CurrencyEnum
  • # Available currencies.
  • availableCurrencyIds: [CurrencyEnum]
  • # Available languages.
  • availableLanguageIds: [LanguageEnum]
  • # Default language.
  • defaultLanguageId: LanguageEnum
  • # Client group.
  • clientGroupId: Int
  • # Client segment.
  • clientSegmentId: ClientSegmentEnum
  • # Office location.
  • officeId: Int
  • # Payment delinquency configuration.
  • paymentDelinquencyConfigurationId: Int
  • # Notes.
  • internalComment: String
  • # Time of first sale.
  • timeOfFirstSale: DateTime
  • # Client support contact.
  • defaultSupportContactId: Int
  • # Security policy.
  • securityPolicyId: Int
  • # Cleverbridge contacts.
  • cleverbridgeContacts: CleverbridgeContactsInput
  • # Extended settings for the client account.
  • extendedSettings: ExtendedClientSettingsInput
  • # Customize the credit card descriptor to match the company name of the client.
  • # This makes it easier for customers to recognize the purchase they have made in
  • # their credit card billing statement.
  • creditCardDescriptor: String
  • # Only secure notifications
  • onlySecureNotifications: Boolean
  • # Shipping configuration.
  • defaultShippingConfigurationId: Int
  • # Catalog.
  • defaultCatalogId: Int
  • # Policies & procedures of the client.
  • policies: [ClientPolicyInput]
  • # Settings for refund policies
  • refundPolicySettings: RefundPolicySettingsInput
  • # Client contacts.
  • clientContacts: [TypedClientContactInput]
  • # Payout information.
  • payoutInformation: [PayoutInformationInput]
  • # ClientAddonsPrivilegeSetId 7 is not valid.
  • clientAddonsPrivilegeSetIds: [Int!]
  • # Service endpoint for upgrade management.
  • upgradeManagementServiceEndpoint: ServiceEndpointInput
  • # Client subscription Settings.
  • subscriptionSettings: ClientSubscriptionSettingsInput
  • }

link Required by