SnapChat Pixel
We immediately send the following events.
Page Visit
As soon as a user visits any of our offering pages, we send an event for the same.
Add To Cart
As soon as a user starts a payment for any offering, we send the ADD_CART
event with below parameters.
{
content_ids: window.location.pathname, //offering url
content_name: offering?.title, //offering title
content_type: "course", //offerinh type
currency: "INR",
value: offering?.price, //offering price in INR
num_items: 1,
}
Payment Complete
Once a user completes payment for any offering, we send a PURCHASE
event with below parameters.
{
content_ids: window.location.pathname, //offering url
content_name: offering?.title, //offering title
content_type: "course", //offerinh type
currency: "INR",
value: offering?.price, //offering price in INR
num_items: 1,
}
Last updated