Start Payment

Triggered when the user gets to the payment part of the checkout funnel.

Properties:

NameTypeDescription
origintextWix App name, i.e Stores, Bookings
contentsarrayAll products in cart
contents.idtextProduct ID
contents.nametextProduct name
contents.categorytextCollection name
contents.varianttextSelected choice from 1st product option
contents.pricecurrencyProduct price
contents.currencycurrencyCurrency in ISO-4217 format

Example:

Copy
1
trackEvent("StartPayment",
2
{
3
"origin": "Stores",
4
"option": "Express",
5
"contents": [{
6
"id": "T123",
7
"name": "Running shoes",
8
"..."
9
}]
10
}
Was this helpful?
Yes
No