Work in Progress: How to send data to Google Analytics
function output(userData, context) {
if (!window.analytics) return
const props = {
//here is where all the properties and values go, some examples below:
flowId: 'savvy flow',
email: userData.email
}
window.analytics.track(`event name`, props) //here is where the event name goes
}PreviousWork in Progress: How to send data to Google TagNextWork in Progress: How to Fetch User Location Data to use in your Flow
Last updated