π Lead Capture Automation Flow
Triggered by form POST on the Bright Brew landing page. Extracts lead data and creates a Nexus task from the New Lead Record template.
β‘ Trigger β Form POST Received
Flow fires when the Bright Brew landing page form at / submits a POST request to /flow-handler. Accepts application/x-www-form-urlencoded and application/json payloads.
π₯ Extract Fields
Parse the request body and extract the following fields from the form submission payload.
full_name email FIELD EXTRACTIONπ Create Nexus Task from Template
Using the New Lead Record template (key: 9f58a89eea2380dbd5412053db0f15ef0e0ab6bf), create a new Nexus task. Populate the task heading with the lead's name and embed the email in the task output/description.
β©οΈ Redirect to Thank-You Page
On successful task creation, redirect the submitter to /thank-you with a success confirmation. On failure, return a 400 error response with a descriptive message.
REDIRECT /thank-you SUCCESS HANDLERFlow Identifier
Status
Trigger Site
Trigger Event
Template Key
Target Project
| Form Field | Nexus Task Field | Notes | |
|---|---|---|---|
full_name |
β | heading |
Prefixed: "New Lead: {full_name}" |
email |
β | output / description |
Stored as "Email: {email}" in task body |
| timestamp | β | output |
Auto-generated submission timestamp (UTC) |
| source | β | output |
Always "brightbrew-landing-page" |
POST Endpoint
POST https://brightbrew.tenbynine.com/flow-handler
Content-Type: application/x-www-form-urlencoded
full_name=Jane+Smith&email=jane%40example.com
β Extracts fields
β Creates Nexus task from template 9f58a89eea2380dbd5412053db0f15ef0e0ab6bf
β 302 Redirect to /thank-you
Last Run
9f58a89eea2380dbd5412053db0f15ef0e0ab6bf (New Lead Record)/flow-handlerbrightbrew landing page