gtag('event', 'purchase', {
context: 'platform', // or 'embed'
transaction_id: 1000,
currency: 'CAD', // CAD, USD, AUD, etc.
value: 500, // total transaction $ value
coupon: null, // coupon code if applied
// items depend on enabled features and fundraiser configuration
items: [
{ item_id: 'donation', item_name: 'Donation', price: 100, quantity: 1 },
{ item_id: 'cards', item_name: 'eCards', price: 20, quantity: 1 },
{ item_id: 'apparel', item_name: 'Apparel / Items', price: 49.49, quantity: 1 },
{ item_id: 'ticket', item_name: 'Tickets', price: 25.50, quantity: 1 },
{ item_id: 'registration', item_name: 'Registration', price: 50, quantity: 1 },
{ item_id: 'sponsor', item_name: 'Sponsorship', price: 500, quantity: 1 },
{ item_id: 'covered_fee', item_name: 'Covered Fee', price: 5, quantity: 1 },
]
});