GraphQL INPUT_OBJECT

CreateCustomerContactsInput

Input for created customer.

link Definition

  • input CreateCustomerContactsInput {
  • # Unique ID of the customer for whom the contact information is created.
  • customerId: Int!
  • # 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
  • }

link Required by