PayPal Insights SDK - Submit Checkout Email Event
DOCS
Last updated: Aug 15th, 8:03am
This event signifies that a user has submitted the email address as part of the checkout process.
1window.paypalInsight('event', 'submit_checkout_email', SUBMIT_CHECKOUT_EMAIL_PAYLOAD);
SUBMIT_CHECKOUT_EMAIL_PAYLOAD
- type:
object - required: true
- props:
- session_id:
- type: SessionId
- required: true
- page_type:
- type: PageType
- required: false
- experiment:
- type: Array<Experiment>
- required: false
- session_id:
Example
1window.paypalInsight("event", "submit_checkout_email", {2 session_id: "session-12345",3 page_type: "checkout",4 experiment: [5 {6 exp_name: "axo-experiment",7 treatment_name: "test",8 ramp: "50%"9 }10 ]11});