GraphQL OBJECT
PurchaseSearchResultItem
Purchase that matches the search parameters.
link Definition
- type PurchaseSearchResultItem {
- # Cleverbridge's unique ID for a customer.
- : Int!
- # Provides information about whether payment has been received, if the product has
- # been delivered, and if there are any problems.
- : PurchaseStatus
- # Date and time when the order was placed.
- : DateTime!
- # Date and time when payment was received for the order.
- : DateTime
- # Date and time when order was refunded.
- : DateTime
- # Unique ID of the purchase.
- : Int!
- # Last four digits of the customer's credit card number.
- : String
- # Person or company that purchases the software or signs up for the subscription.
- # Contact information used for communication about payments.
- : PurchaseSearchContact
- # 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.
- : PurchaseSearchContact
- # Person or company that the software license is registered to. Contact
- # information used for the generation of licensing information.
- : PurchaseSearchContact
- # List of products the customer purchased.
- : [PurchaseSearchResultProduct]
- # The payment type.
- : PaymentType
- # List of x-parameters used in the transaction. X-parameters are components of
- # URLs that are used to pass information through the checkout process.
- : [ExtraParameter]
- # Gross price of the customer.
- : CurrencyAmount @deprecated( reason: "Use customerPrice instead." )
- # Price of the customer.
- : Price
- # Price of the client.
- : Price
- # Gross price of the customer in Euro.
- : CurrencyAmount
- # Invoice number on latest invoice document.
- : String
- # Billing interval number in current subscription interval of corresponding
- # subscription.
- : Int
- # Interval number of corresponding subscription.
- : Int
- # Is this order a test order?
- : Boolean
- # Previous URL.
- : String
- # The affiliate.
- : Affiliate
- # Name of the card holder.
- : String
- # Customer purchase order no.
- : String
- # Internal ID of the customer.
- : String
- # Manual authorization status.
- : ManualAuthorizationStatus
- # Type of the partner.
- : PartnerType
- # ID of the used protected URL.
- : Int
- # Username of the customer.
- : String
- # Business model.
- : BusinessModel
- # Bank identifier code.
- : String
- # International bank account number.
- : String
- # Cart level promotion associated with the purchase.
- : PurchaseSearchPromotion
- }