GraphQL INPUT_OBJECT

UpdateCustomerContactsInput

Input for update or creation of contact profiles for the related customer.

link Definition

  • input UpdateCustomerContactsInput {
  • # Unique ID of the customer for whom contact information is updated.
  • customerId: Int!
  • # Person or company that purchases the software or signs up for the subscription.
  • # Contact information used for communication about payments.
  • billingContact: ContactInput
  • # 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: ContactInput
  • # Person or company that the software license is registered to. Contact
  • # information used for the generation of licensing information.
  • licenseeContact: ContactInput
  • # If this flag is set, all unpaid purchases with active subscriptions of the
  • # provided customer are being updated with the new contact data.
  • updateUnpaidPurchases: Boolean
  • }

link Required by