FormWise Manual
Your FormWise Dashboard
  • Welcome
  • Book a 1-on-1 Onboarding Session
  • Core Features
    • Your Dashboard
    • OpenAI API Key
    • SmartForms
    • CoPilots
    • Toolsets
    • Login Mode & Monetization
      • Choose A Toolset To Monetize
      • Setting Up Stripe Payments
      • Setting Up Subscription Plans
      • Embedding Your Login Mode Toolset
      • What Your Users See
      • Login Mode FAQs
      • Creating Credit Add Ons
      • Customizing Your Tool's Credit Usage
      • Using Coupon Codes
      • Editing Default Text And Internationalization
      • Migrating Existing Users
      • Importing Your FormWise AI Tool SaaS Templates
      • Using Webhooks For Login Mode User Sign Ups
      • Login Mode Stripe FAQs
    • OpenAI's GPT Engines Overview
  • Full Features
    • Intro To Prompt Chaining in FormWise
    • Advanced Prompt Chaining Guide
    • Using Front-End File Uploads in SmartForms
    • Using Backend Data Sources in SmartForms
    • Using Backend Data Sources in CoPilots
    • Using Front-End File Uploads in CoPilots
    • Web Searching
    • Web Crawling
    • Cached Input Responses (Toolsets)
    • Using Toolset Starter Packs
      • 📢 Digital Marketing Accelerator - Toolset Starter Pack
      • 🏪eCommerce A.I. Toolkit - Toolset Starter Pack
      • 📚 Blog Writing & SEO Toolkit – Toolset Starter Pack
      • 📚 Email Marketing Power Pack – Toolset Starter Pack
      • 📚 Course Creator’s Toolkit – Toolset Starter Pack
      • 📚 Real Estate Agent Success Toolkit – Toolset Starter Pack
      • 📚 Author & Writer A.I. Kit – Toolset Starter Pack
    • Sharing & Adding Toolsets
    • Auto Populate Fields In Your Tool URLs
    • Collaborators & Workspaces
    • Brand Voice Profile Settings
  • Using FormWise & HighLevel
    • HighLevel & FormWise
    • Full HighLevel Agency Plan Setup & Integration
    • Sending FormWise AI Responses to HighLevel Workflows via Webhook
  • Free Resources
    • Activate HighLevel CRM Subaccount
      • Activation Link
      • HighLevel CRM Training Tutorials
    • Use Case Guides
      • GUIDE: CoPilot Best Practices
      • GUIDE: Building Your AI Tool in Seconds with FormWise’s AI Tool Wizard
      • GUIDE: Building a Course Companion CoPilot in FormWise
      • GUIDE: Building a Niche-Specific AI Toolkit for Your GoHighLevel SaaS
      • GUIDE: How to Embed FormWise CoPilots and SmartForms in GoHighLevel Membership or Course Areas
      • GUIDE: Turning Responses Into PDFs
    • Use Case Examples
      • Quick Guides
        • Building A Simple A.I. Tool
        • Building A Chatbot CoPilot
        • Building An A.I. Lead Magnet
        • Building An A.I. Quiz
        • Building An A.I. Toolset
      • Generate A.I. Tool Ideas Here
      • Embedded Tool Examples
      • Watch Me Build
    • CoPilot Prompt Templates
      • ✈️Travel Assistant CoPilot Prompt
      • 📙Course Creator CoPilot Prompt
      • ✉️Email Responder Coach CoPilot Prompt
      • 👜Small Business Plan Coach CoPilot Prompt
      • 📘Facebook Ads Copy Coach CoPilot
      • 🔍SEO Article CoPilot Prompt
      • 📜Resume Coach CoPilot Prompt
      • 💌Email Copy Coach CoPilot Prompt
      • 📈GoHighLevel Coach CoPilot Prompt
      • 🥇UVP Coach CoPilot
      • 💪Fitness Coach CoPilot Prompt
      • 🔢Quiz Creator CoPilot Prompt
      • 📜Working with Transcripts CoPilot Prompt
    • SmartForm Builder GPT
    • CoPilot Builder GPT
  • SUPPORT
    • Account & Billing
    • Support & Office Hours Registration
    • Troubleshooting Errors
      • Page Load Errors
      • Error 500 Troubleshooting
      • Tools Stuck At 75%
      • Form Submission Errors
    • FAQs
    • What’s the Difference Between the Pro and Agency Plans?
  • Integrations
    • OpenAI
    • OpenAI Documentation
    • FormWise API
      • POST a Form Completion to Formwise
      • GET a Form Completion from FormWise
      • Form Completion Webhooks
        • Parsing Responses for Zapier
    • Kajabi
      • How to Send FormWise Lead Data into Kajabi using Webhooks
      • How to Embed FormWise CoPilots and SmartForms into Your Kajabi Course
    • Teachable
      • How to Embed FormWise CoPilots and SmartForms in Teachable
    • Circle.so
    • Third Party Platform Embedding
      • WordPress (Embedding Tools)
      • Webflow (Embedding Tools)
      • Wix (Embedding Tools)
      • Squarespace (Embedding Tools)
      • Bubble.io (Embedding Tools)
Powered by GitBook
On this page

Was this helpful?

  1. Full Features

Auto Populate Fields In Your Tool URLs

Auto Populating Forms by using URL parameters.

PreviousSharing & Adding ToolsetsNextCollaborators & Workspaces

Last updated 1 month ago

Was this helpful?

You can use URL Parameters to auto populate fields on single page tools. The URL parameters will directly relate to the question ID you are wishing to have it populate.

Be mindful of using spaces, and properly encoding your text without spaces. Use proper URL Encoding Functions from

Form builder IDs

The first step is to properly note your IDs you are using for your questions. Below is an example of the IDs: email, destination, and fullname

Make note of the type of fields you are populating, multiline inputs will accept any type of text, however number fields will only populate with numbers and dates and will not accept text values.

You can see in the example below, we are using the parameter string

?destination=Greece&email=test@test.com&fullname=John%20Smith

As you can see the order of the parameters does not matter, and parameters properly encoded such as "John Smith" has the space encoded with "%20". Formwise will automatically recognize this.

https://www.w3schools.com/tags/ref_urlencode.ASP