Skip to main content

Track Shopper Events

Watch this video to see exactly how to verify that Conversion Tracker is working correctly:


Here are the steps:

  1. Watch a Bambuser Shoppable Video on your site
  2. Add a few products to the cart
  3. Open the browser DevTools (inspect), head to the Network tab, and leave it open
  4. Complete the checkout and proceed to the order confirmation page
  5. Check the Network tab in the DevTools and filter by 'events'
  6. Find the request to Bambuser /events endpoint that includes the purchase data in the request payload, as below: img
  7. Make sure all the sent data is correct and has the expected data types according to the requirements.
  8. If you are unable to verify the order being tracked, head over to the troubleshooting checklist.

Troubleshoot

Tracking FAQ

For backward compatibility reasons, cookies are not created unless the onBambuserLiveShoppingReady() function is defined. By adding the below code to your LiveShopping landing page, you should be able to see the cookies are set.

if (typeof window.onBambuserLiveShoppingReady === 'undefined') {
window.onBambuserLiveShoppingReady = function() {};
}

If a user has disabled/remove cookies, the conversion tracking will not work for that particular user. However, the user experience on the player will be the same.

  • transaction.id is currently used for identifying "duplicate rows" as we may receive duplicate purchase data.