Retail/Ecommerce Apps
The following events are useful for apps selling products or goods.
As our terminology says, for a Retail/e-Commerce app, The Item is your Product.
When a user views an item/product.
Name | Type | Required | Description |
---|---|---|---|
item | Item | Yes | The item details that the user view. |
When a user adds an item to the cart
Name | Type | Required | Description |
---|---|---|---|
items | Array of Cart Item | Yes | The item details that the user added to the cart with quantity. |
When a user removes an item from the cart
Name | Type | Required | Description |
---|---|---|---|
items | Array of Cart Item | Yes | The item details that the user removes from the cart with quantity. |
When a user adds an item to the Wishlist.
Name | Type | Required | Description |
---|---|---|---|
item | Item | Yes | The item details that the user added to the wishlist. |
When a user removes an item from the Wishlist.
Name | Type | Required | Description |
---|---|---|---|
item | Item | Yes | The item details that the user removed from the wishlist. |
When a user begins checkout like starts payment
The following example includes optional properties too.
When a user views their cart.
The following example includes optional properties too.
When a user completes a purchase or places an order.
Name | Type | Required | Description |
---|---|---|---|
items | Array of Cart Item | Yes | The List of cart items which are present in the cart. |
amount | Amount | Yes | Amount detail with a final total value and currency |
coupon | Coupon | No | Any Coupon is applied to the final amount. |
transactionID | String | Yes | TransactionId of the user purchase. |
bAddress | Address | Yes | Billing Address for the order. |
sAddress | Address | Yes | Shipping Address for the order. |
deliveryType | String | No | Type of the delivery like Standard, Express, On-day etc. |
The following example includes optional properties too.
When a user selects any kind of category within your app.
Name | Type | Required | Description |
---|---|---|---|
category | Category | Yes | The category that the user selected. |