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