Developers
Collecting accurate “commerce” data is vital if users can purchase any physical or virtual goods in your app. Some important use-cases powered by commerce data include:
The mParticle SDK provides dedicated commerce APIs to collect commerce data in a form that can be usefully passed on to your integrations. mParticle’s commerce data structure closely follows the standard created by the Google Analytics Enhanced Ecommerce API.
Some mParticle partners track commerce data at a granular level, others are only interested in the currency amount of a transaction, while others provide no commerce support at all. mParticle’s commerce schema is designed to be flexible to deterministically map to all integration types.
mParticle’s full commerce feature-set allows you to track a full purchase flow, from promotions, to product impressions, through multiple checkout steps. However, for some use cases it is sufficient to track only the purchase itself.
Basic purchase tracking is a three-step process:
Create the product or products
Summarize the transaction details include:
// 1. Create the products
MPProduct *product = [[MPProduct alloc] initWithName:@"Double Room - Econ Rate"
sku:@"econ-1"
quantity:@4
price:@100.00];
// 2. Summarize the transaction
MPTransactionAttributes *attributes = [[MPTransactionAttributes alloc] init];
attributes.transactionId = @"foo-transaction-id";
attributes.revenue = @430.00;
attributes.tax = @30.00;
// 3. Log the purchase event
MPCommerceEventAction action = MPCommerceEventActionPurchase;
MPCommerceEvent *event = [[MPCommerceEvent alloc] initWithAction:action
product:product];
event.transactionAttributes = attributes;
[[MParticle sharedInstance] logEvent:event];
// 1. Create the products
let product = MPProduct.init(name: "Foo name",
sku: "Foo sku",
quantity: 4,
price: 100.00)
// 2. Summarize the transaction
let attributes = MPTransactionAttributes.init()
attributes.transactionId = "foo-transaction-id"
attributes.revenue = 430.00
attributes.tax = 30.00
// 3. Log the purchase event
let action = MPCommerceEventAction.purchase;
let event = MPCommerceEvent.init(action: action, product: product)
event.transactionAttributes = attributes
MParticle.sharedInstance().logEvent(event)
Product-based commerce events measure all interactions with a product that can lead up to a purchase. Product events can include:
The first step in any product-based event is to create the products. See basic purchase tracking for help creating products.
Once you have your products, there are two paths you can follow. You can build and log events manually, or you can use the dedicated “cart” API to track your purchase flow and let mParticle log events for you.
If you don’t need to track every interaction that leads to a purchase, or if your checkout flow is highly customized, it may be easiest to manually create the events you need. All product events take a product (or list of products), a product “action,” which identifies the action being captured. Purchases and refunds require a transaction attribuges object.
The complete list of possible product actions includes:
You can choose to track all of these actions, or any combination that suits your needs.
If your app follows a standard commerce flow, you can use the Cart API to simplify the process of tracking Product events. The Cart is a property of the Current User. The key advantage to using the Cart API is that you don’t need to manually add the same products to each event. Once you add the products to your Cart, they will automatically be included in all product actions logged by the Commerce API.
All products added to the cart are persisted in local storage.
TransactionAttributes
object. See basic purchase tracking for an example. You don’t need to include the products, as they are automatically added from the Cart.// Get the cart
MParticleUser *currentUser = [[[MParticle sharedInstance] identity] currentUser];
MPCart *cart = currentUser.cart;
// Add products to the cart
MPProduct *doubleRoom = [[MPProduct alloc] initWithName:@"Double Room - Econ Rate"
sku:@"econ-1"
quantity:@4
price:@100.00];
[[cart] addProduct:doubleRoom]; // Generates an Add to Cart event
MPProduct *spaPackage = [[MPProduct alloc] initWithName:@"Spa Package"
sku:@"Spa/Hya"
quantity:@1
price:@170.00];
[[cart] addProduct:spaPackage]; // Generates an Add to Cart event
// Remove products from the cart
[cart removeProduct:spaPackage]; // Generates a Remove from Cart event
// Sumarize the transaction
MPTransactionAttributes *attributes = [[MPTransactionAttributes alloc] init];
attributes.transactionId = @"foo-transaction-id";
attributes.revenue = @430.00;
attributes.tax = @30.00;
// Log a purchase with all items currently in the cart
MPCommerce *commerce = [[MParticle sharedInstance] commerce];
[commerce purchaseWithTransactionAttributes:attributes
clearCart:YES];
// Create products
let doubleRoom = MPProduct.init(name: "Double Room - Econ Rate",
sku: "econ-1",
quantity: 4,
price: 100.00)
let spaPackage = MPProduct.init(name: "Spa Package",
sku: "Spa/Hya",
quantity: 1,
price: 170.00)
// Get the cart
let currentUser = MParticle.sharedInstance().identity.currentUser
if let cart = currentUser?.cart {
// Add products to the cart
cart.addProduct(doubleRoom) // Generates an Add to Cart event
cart.addProduct(spaPackage) // Generates an Add to Cart event
// Remove products from the cart
cart.removeProduct(spaPackage) // Generates a Remove from Cart event
}
// Sumarize the transaction
let attributes = MPTransactionAttributes.init()
attributes.transactionId = "foo-transaction-id"
attributes.revenue = 430.00
attributes.tax = 30.00
// Log a purchase with all items currently in the cart
let commerce = MParticle.sharedInstance().commerce
commerce.purchase(with: attributes,
clearCart: true)
“Promotion” events are used to represent internal offers - such as discounts - that might be displayed in a banner advertisement. Promotion events are created by specifying a promotion action string, and one or more promotions. When constructing a promotion it’s recommended to specify at least an ID or a name.
MPPromotion *promotion = [[MPPromotion alloc] init];
promotion.promotionId = @"my_promo_1";
promotion.creative = @"sale_banner_1";
promotion.name = @"App-wide 50% off sale";
promotion.position = @"dashboard_bottom";
MPPromotionContainer *container =
[[MPPromotionContainer alloc] initWithAction:MPPromotionActionView
promotion:promotion];
MPCommerceEvent *event =
[[MPCommerceEvent alloc] initWithPromotionContainer:container];
[[MParticle sharedInstance] logEvent:event];
let promotion = MPPromotion.init()
promotion.promotionId = "my_promo_1"
promotion.creative = "sale_banner_1"
promotion.name = "App-wide 50% off sale"
promotion.position = "dashboard_bottom"
let container = MPPromotionContainer.init(action: MPPromotionAction.view, promotion: promotion)
let event = MPCommerceEvent.init(promotionContainer: container)
MParticle.sharedInstance().logEvent(event)
“Impression” events are used to represent any time one or more products are displayed on the screen. Optionally, you can specify a name for the location or list in which the products appeared.
MPCommerceEvent *event =
[[MPCommerceEvent alloc] initWithImpressionName:@"suggest products list"
product:product];
[[MParticle sharedInstance] logEvent:event];
let event = MPCommerceEvent.init(impressionName: "suggest products list", product: product)
MParticle.sharedInstance().logEvent(event)
mParticle commerce events can capture a transaction including multiple products in a single event. Many of our partners take a different approach and only capture purchases at the level of a product. At the simplest end of the spectrum, some partners are only interested in logging the increase in a user’s lifetime value and capture no product details at all. For this reason, it’s important that both your individual products and the transaction summary are complete and correct.
When instrumenting your app with mParticle, you don’t need to worry about the requirements of individual partners. Capture your purchase events in as much detail as you have and mParticle takes care of transforming the data for each partner. Most commonly, this involves “expanding” a commerce Event. This means automatically creating a new separate event for each product in the original event and copying the shared attributes to each new event.
Commerce events are only expanded if needed:
logCommerceEvent
, then the event is expanded to ensure that no data is lost.logCommerceEvent
, then no expansion is needed, and no data is lost. In addition, the expansion behavior is different depending on the commerce event type:
The following tables show the results after expansion:
Product commerce events expand into one event per product with all available key/value pairs.
Beautified Key Name |
Event Object Key |
Value Type |
Expected Values |
---|---|---|---|
Event Name | n | String | Example: """eCommerce - %@ - Item"" where %@ is the name of the action type (""add_to_cart"" ""purchase"" ""refund”)" |
Event Type | et | String | transaction |
Custom Attributes | attrs | Dictionary | Contains all of the following key/value pairs if they are available |
Brand | Brand | String | |
Name | Name | String | |
Id | Id | String | |
Item Price | Item Price | Number | |
Quantity | Quantity | Number | |
Category | Category | String | |
Coupon Code | Coupon Code | String | |
Variant | Variant | String | |
Position | Position | Integer | |
Total Product Amount | Total Product Amount | Number | Product Quantity * Product Price |
Transaction Id | Transaction Id | ||
Custom Keys | %@ | Any | All custom attributes set on the commerce event by the client |
Purchase or Refund Commerce Events expand into an additional event with all available key/value pairs.
Beautified Key Name |
Event Object Key |
Value Type |
Expected Values |
---|---|---|---|
Event Name | n | String | """eCommerce - %@ - Total"" where %@ is the name of the action type (""purchase"" or ""refund"")" |
Event Type | et | String | transaction |
Custom Attributes | attrs | Dictionary | Contains all the following key/value pairs if they are available |
Currency Code | Currency Code | String | |
Product Count | Product Count | Number | |
Affiliation | Affiliation | String | |
Shipping Amount | Shipping Amount | Number | |
Tax Amount | Tax Amount | Number | |
Total Amount | Total Amount | Number | |
Transaction Id | Transaction Id | String | |
Coupon Code | Coupon Code | String | |
Product Action List | Product Action List | String | |
Product List Source | Product List Source | String | |
Checkout Options | Checkout Options | String | |
Checkout Step | Checkout Step | String | |
Custom Keys | %@ | Any | All custom attributes set on the commerce event by the client |
Promotion commerce events expand to an additional event with all available key/value pairs.
Beautified Key Name |
Event Object Key |
Value Type |
Expected Values |
---|---|---|---|
Event Name | n | String | """eCommerce - %@ - Total"" where %@ is the name of the promotion action type (""click"" or ""view"")" |
Event Type | et | String | transaction |
Custom Attributes | attrs | Dictionary | Contains the following key/value pairs if they are available |
Promotion List | pl | Dictionary | |
Creative | Creative | String | |
Name | Name | String | |
Position | Position | String | |
Id | Id | String |
Impression Commerce events expand to an event for every product in the impression with all available key/value pairs.
Beautified Key Name |
Event Object Key |
Value Type |
Expected Values |
---|---|---|---|
Event Name | n | String | eCommerce - Impression - Item |
Event Type | et | String | transaction |
Custom Attributes | attrs | Dictionary | Contains all the following key/value pairs if they are available |
Product Impression List | Product Impression List | String | |
Brand | Brand | String | |
Name | Name | String | |
Id | Id | String | |
Item Price | Item Price | Number | |
Quantity | Quantity | Number | |
Category | Category | String | |
Coupon Code | Coupon Code | String | |
Variant | Variant | String | |
Position | Position | Integer | |
Total Product Amount | Total Product Amount | Number | Product Quantity * Product Price |
Product Custom Keys | %@ | Any | All custom attributes set on the product by the client |
Custom Keys | %@ | Any | All custom attributes set on the commerce event by the client |
Reference the complete API reference for a deep dive into the commerce APIs.
Was this page helpful?