Merchants often need to create their own landing pages or squeeze pages. Fields incorporated into this page can be input within the sign-up fields within the App and Prospectus. The intent of this article is to show how to pass sign up form inputs through URL parameters.
Benefits
- Pass inputs to CRM or lead management software
- Save user time. No double input required.
- Increases conversion rates.
Prospectus
https://app.example.com/prospectus?name=Nick%20Goldberg&email=nick@example.com
Anatomy
- https://app.example.com/prospectus/
- ?name=
- {{first_name}}
- %20
- {{last_name}}
- &email=
- {{email}}
Note: Replace ‘app.example.com’ above with your unique URL.
App
https://app.example.com/signup?name=Nick%20Hoffman&email=nick+0220192@sharearefund.com&trial=PLACEHOLDER
Anatomy
- https://app.example.com/signup/
- ?name=
- {{first_name}}
- %20
- {{last_name}}
- &email=
- {{email}}
Note: Replace ‘app.example.com’ above with your unique URL.
Free trial
In the example above, there’s an additional free trial URL parameter. Please reference the Getting Started emails sent to program managers, as well as guides located within the Resources folder for details on the free trial values within. Simply replace PLACEHOLDER with the hash string detailed for the type of trail intended (15 or 30 days).