Add Payment Info

Triggered after the user adds their payment information.

Properties:

NameTypeDescription
origintextWix App name, i.e Stores, Bookings
optiontextAdditional information to send with Extended Ecommerce checkout step
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
{
2
"origin": "Stores",
3
"option": "Express",
4
"contents": [{
5
"id": "T123",
6
"name": "Running shoes",
7
"..."
8
}]
9
}
Was this helpful?
Yes
No