In order to collect app events and use that data to create behavioural segments in D·engage you have to determine the type of events and data that needs to collect. Once you have determined that, you will need to create a “Big Data” table in D·engage. Collected events will be stored in this table. Multiple tables can be defined depending on your specific need.
Any type of event can be collected. The content and the structure of the events are completely flexible and can be changed according to unique business requirements. You will just need to define a table for events.
Once defined, all you have to do is to send the event data to these tables. D·engage SDK has only two functions for sending events: sendDeviceEvent and sendCustomEvent. Most of the time you will just need the sendDeviceEvent function.
For eCommerce accounts, there are predefined event tables. And you can feed these tables by using eCommerce event functions.
1. Login / Logout Action
If the user logs in or you have user information, this means you have contact_key for that user. You can set contact_key in order to match user with the browser. There are two functions for getting and setting contact_key.
setContactKey
If user logged in set user id. This is important for identifying your users. You can put this function call in every page. It will not send unnecessary events.
Dengage.setContactKey(contactKey: "userId")
getContactKey
If you need to get current user information from SDK use this function.
var userId = Dengage.getContactKey()
2. Event Collection
If your D·engage account is an eCommerce account, you should use standard eCommerce events in the SDK. If you need some custom events or your account is not a standard eCommerce account, you should use custom event functions.
a) Events for eCommerce Accounts
There are standart eCommerce events in D·engage SDK.
- Page View Events
- Home page view
- Product page view
- Category page view
- Promotion page view
- ...
- Shopping Cart Events
- Add to cart
- Remove from cart
- View Cart
- Begin Checkout
- Order Events
- Order
- Cancel order
- Wishlist Events
- Add to wishlist
- Remove from wishlist
- Search Event
For their event, there are related tables in your account.
Page View Events
Page view events will be sent to the page_view_events table. If you add new columns to this table. You can send these in the event data.
// Home page view
Dengage.pageView(params: [
"page_type":"home"
// ... extra columns in page_view_events table, can be added here
])
// Category page view
Dengage.pageView(params: [
"page_type":"category",
"category_id":"1"
// ... extra columns in page_view_events table, can be added here
])
// Product page view
Dengage.pageView(params: [
"page_type":"product",
"product_id":"1"
// ... extra columns in page_view_events table, can be added here
])
//promotion page view
Dengage.pageView(params: [
"page_type":"promotion",
"promotion_id":"1"
// ... extra columns in page_view_events table, can be added here
])
//custom page view
Dengage.pageView(params: [
"page_type":"custom"
// ... extra columns in page_view_events table, can be added here
])
For other pages you can send anything as page_type
Shopping Cart Events
These events will be stored in shopping_cart_events and shopping_cart_events_detail.
There are 4 shopping cart event functions. addToCart, removeFromCart, viewCart, beginCheckout
// Add to cart action
var params = [
"product_id":1,
"product_variant_id":1,
"quantity":1,
"unit_price":10.00,
"discounted_price":9.99,
// ... extra columns in shopping_cart_events table, can be added here
]
Dengage.addToCart(params : params)
// Remove from cart action
var params = [
"product_id":1,
"product_variant_id":1,
"quantity":1,
"unit_price":10.00,
"discounted_price":9.99,
// ... extra columns in shopping_cart_events table, can be added here
]
Dengage.removeFromCart(params : params)
Order Events
Orders events will be sent to order_events and order_events_detail tables.
// Place order action
var params = [
"order_id":1,
"item_count":1, // total ordered item count
"total_amount":1, // total price
"discounted_price":9.99, // use total price if there is no discount
"payment_method":"card",
"shipping":5,
"coupon_code":""
]
Dengage.order(params : params)
// Cancel order action
var params = [
"order_id":1, // canceled order id
"item_count":1, // canceled total item count
"total_amount":1, // canceled item's total price
"discounted_price":9.99, // use total price if there is no discount
// ... extra columns in order_events table, can be added here
]
Dengage.cancelOrder(params : params)
Search Event
Search events will be stored in search_events table.
var params = [
"keywords":"some product name", // text in the searchbox
"result_count":12,
"filters":"" //you can send extra filters selected by user here. Formating is not specified
// ... extra columns in search_events table, can be added here
]
Dengage.search(params : params)
Wishlist Events
These events will be stored in wishlist_events and wishlist_events_detail.
There are 2 wishlist event functions. addToWishlist, removeFromWishlist.
In every event call, you can send all items to the wishlist. It makes it easy to track current items on the wishlist.
// Add to wishlist action
var params = [
"product_id":1,
// ... extra columns in wishlist_events table, can be added here
]
Dengage.addToWishList(params : params)
// Remove from wishlist action
var params = [
"product_id":1,
// ... extra columns in wishlist_events table, can be added here
]
Dengage.removeFromWishList(params : params)
b) Custom Events
Send Device Specific Events
You can use sendDeviceEvent function for sending events for the device. Events are sent to a big data table defined in your D·engage account. That table must have relation to the master_device table.
If you set contact_key for that device. Collected events will be associated for that user.
dengage(‘sendDeviceEvent’, tableName, dataObject [, callback]);
// for example if you have a table named "events"
// and events table has "key", "event_date", "event_name", "product_id" columns
// you just have to send the columns except "key" and "event_date", because those columns sent by the SDK
let params = [
"event_name": "page_view",
"product_id": "1234",
]
Dengage.SendDeviceEvent(toEventTable: 'events', andWithEventDetails: params)