GraphQL OBJECT
Customer
Customer profile and transaction data.
link Definition
- type Customer {
- # Unique ID of a customer.
- Int :
- # Your unique ID for the customer.
- String :
- # Internal ID for the customer given by the client.
- String :
- # Person or company that purchases the software or signs up for the subscription.
- # Contact information used for communication about payments.
- Contact :
- # 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.
- Contact :
- # Person or company that the software license is registered to. Contact
- # information used for the generation of licensing information.
- Contact :
- # List of purchases.
- Purchase] : [
- # List of subscriptions.
- Subscription] : [
- Currency :
- # Payment profile of the customer.
- PaymentProfileInterface :
- # List of PDF documents sent to the customer as an email attachment.
- PurchaseDocument] : [
- # The client the customer belongs to.
- Client @deprecated( reason: "Deprecated please use clients instead." ) :
- # The clients the customer belongs to.
- Client] : [
- # Change-payment url for the customer.
- #
- # Arguments
- # returnUrl: If set, a session Url is created and the provided
- # returnUrl is used after the change payment is completed.
- String): String ( :
- # Flag to check if a customer is a reseller or not.
- Boolean :
- }