Shipping Details

Triggered when the user adds shipping details and clicks to advance to the next step in the checkout flow.

Properties:

NameTypeDescription
eventCategorytextWix category
eventActiontextMore detailed event name
eventLabeltextWix App name, i.e Stores, Bookings (equivalent to origin)
contentsarrayAll purchased products
contents.idtextProduct ID
contents.nametextProduct name
isPremiumbooleanWhether the Wix site is Premium
userIdtextUser ID
metaSiteIdtextWix site ID

Example:

Copy
1
trackEvent(‘CustomEvent’,
2
{
3
"eventCategory": "Enhanced Ecommerce",
4
"eventAction": "Add Shipping Details",
5
"eventLabel": "Stores",
6
"contents": [{
7
"id": "T123",
8
"name": "Running shoes",
9
"..."
10
}],
11
"isPremium": true,
12
"userId": "79f246a8-46fd-4429-aac6-006d13cce9a6",
13
"metaSiteId": "e4d85293-d205-48d0-93d4-3ed7b91b9549"
14
}
Was this helpful?
Yes
No