Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR-23282] [JS Library] Add a possibility to pass sub_choise for Person with Origin #356

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
4 changes: 3 additions & 1 deletion source/partials/product_purchase_script.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
},
customer: {
email: '', // Required - Email of the customer who issued a purchase. Example: '[email protected]'
traffic_source: '' // The source of the traffic driven to the campaign. Example: 'facebook'
traffic_source: '', // The source of the traffic driven to the campaign. Example: 'facebook'
phone_optin: false, // Indicates whether the customer has provided consent for phone opt-in. The value should be boolean. If set to true, a valid phone number must be provided.
email_optin: false // Indicates whether the customer has provided consent for email opt-in. The value should be boolean.
}
};

Expand Down