Tracking Events
Track Podcast => Web conversions
Track
Page View
Page views are tracked using the trackPageView method.
podkiteTrack('trackPageView')
Custom Event
You may wish to track a custom event to measure conversion rates or similar. There are five parameters can be associated with each custom event.
podkiteTrack("trackStructEvent", {
category: "my_category",
action: "my_action",
label: "my_label",
property: "my_property",
value: 150.0,
});
Example
podkiteTrack("trackStructEvent", {
category: "ecomm",
action: "checkout",
// item ID/SKU
label: "textile/ETU-09877",
// currency
property: "USD",
// price
value: 29.0,
});