Event
Before you start
Event Log
logEvent(eventName);
logEvent(eventName, properties);Event log example
// When recording only events ex) When using constants
Dfinery.logEvent(DFEvent.LOGIN);
// Alternatively, you can enter the event property name directly.
Dfinery.logEvent("df_login");
// When recording with event properties ex) Sign up
const properties = {};
properties[DFEventProperty.SIGN_CHANNEL] = "Kakao";
Dfinery.logEvent(DFEvent.SIGN_UP, properties);Standard Events & Product Attributes
Standard Events
Constant
Event name
Notation name
Standard event properties
Constant
Event attribute name
Notation name
Product Attributes
Constant
Event attribute name
Type
Explanation
Essential
Example of using standard events
log in
log out
Join the membership
Name
Type
Explanation
Essential
Purchase
Standard event properties
Name
Type
Explanation
Essential
View Home Screen
View product details
Put in a shopping cart
Standard event properties
Name
Type
Explanation
Essential
Add to Wishlist
Standard event properties
Name
Type
Explanation
Essential
Cancel Order
Standard event properties
Name
Type
Explanation
Essential
Search for products
Standard event properties
Name
Type
Explanation
Essential
Share this product
Standard event properties
Name
Type
Explanation
Essential
View product list
Standard event properties
Name
Type
Explanation
Essential
View Cart
Standard event properties
Name
Type
Explanation
Essential
Enter purchase information
Delete Cart
Standard event properties
Name
Type
Explanation
Essential
Custom Events
Data collected automatically
Last updated