GraphQL INPUT_OBJECT

CreateCustomerInput

Input for created customer.

link Definition

  • input CreateCustomerInput {
  • # Unique ID of the client account.
  • clientId: Int
  • # Your unique ID for the customer.
  • clientReferenceId: String
  • # Person or company that purchases the software or signs up for the subscription.
  • # Contact information used for communication about payments.
  • billingContact: CreateContactInput
  • # Person or company to whom the software or service is delivered. Contact
  • # information used for physical shipments, electronic delivery, and communication
  • # concerning the delivery of licensing information.
  • deliveryContact: CreateContactInput
  • # Person or company that the software license is registered to. Contact
  • # information used for the generation of licensing information.
  • licenseeContact: CreateContactInput
  • # Currency code.
  • currencyId: CurrencyEnum
  • }

link Required by