We’ve migrated our documentation to a new site, which means some URLs have changed.
Subscriptions

How can I gather User's Email during Checkout

You can gather a user's email during checkout suggest using our checkoutComplete callback described here.

It has a conversion parameter which contains the user's email.

Sample code:

tp.push(["addHandler", "checkoutComplete", function(conversion){ 
   console.log("User's email:");
   console.log(conversion.email);
}]);

Last updated: