OBJECT
Transaction
A transaction such as a purchase
link GraphQL Schema definition
- type Transaction {
- # Id of the transaction
- UUID! :
- # The transaction's platform (HA or SD)
- String! :
- # Client-side id for the transaction
- String! :
- # Visitor id linked to the source (vuid for example)
- String! :
- # Source of the transaction (ONSITE for example)
- ConversionSource! :
- # Date and time of the transaction in the website
- DateTime! :
- # DEPRECATED (use visitorDate): Date and time of the transaction in the website
- DateTime! :
- # Amount of the transaction
- Float! :
- # ISO Code of the currency used for the payment
- String! :
- # Id of the conversation linked to the transaction, if any
- UUID :
- # Date and time of the event
- DateTime! :
- # Date and time of the registration of the transaction in iAdvize's system
- DateTime! :
- # Date and time of the update of the transaction in iAdvize's system
- DateTime! :
- # Flag that indicates whether or not the transaction was concluded by an
- # authenticated visitor
- Boolean :
- # Engagement campaign project
- Project :
- }