Lead Status Tracking
Every form submission is a potential customer. Lead tracking lets you manage submissions like a mini-CRM — track each one from “New” to “Converted” without leaving your Flowqen dashboard.
Available Statuses
How to Use
Open any form in your dashboard
Click on a form to see its submissions list.
Click on a submission
You'll see the full submission data, and a colored status badge at the top.
Click the status badge to change it
A dropdown appears with all 5 statuses. Pick the new one — it saves instantly, no “Save” button needed.
Filter by status
Back in the submissions list, use the status dropdown filterto show only “New” leads, only “Qualified” ones, etc. This is how sales teams prioritize their follow-ups.
What it looks like
Priya Sharma
priya@startup.co
Rahul Gupta
rahul@agency.in
Sarah Chen
sarah@techcorp.com
Mike Johnson
mike@store.com
Update status via API
You can also change a submission's lead status programmatically — useful for syncing with an external CRM or automating status changes.
/api/submissions/:submissionId{ "leadStatus": "qualified" }
Valid values: new, contacted, qualified, converted, lost.
// Webhook handler on your serverapp.post("/webhook/flowqen", async (req, res) => {const { submission } = req.body;const email = submission.data.email;// Auto-qualify leads from big companiesconst enterpriseDomains = ["google.com", "amazon.com", "microsoft.com"];const domain = email.split("@")[1];if (enterpriseDomains.includes(domain)) {await fetch(`https://flowqen.com/api/submissions/${submission.id}`, {method: "PATCH",headers: { "Content-Type": "application/json" },body: JSON.stringify({ leadStatus: "qualified" })});}res.sendStatus(200);});
Common Use Cases
Sales Pipeline
Track leads from "Get a Quote" forms through your sales process.
Event Registration
Mark attendees as Contacted after sending confirmation emails.
Support Tickets
Track bug reports from New → Contacted → Converted (resolved).
Job Applications
Qualify candidates, then mark as Converted when hired or Lost when rejected.