Form Data Extraction¶
Extract structured data from unstructured text form submissions.
Workflow Overview¶
graph LR
A[Form Submission] --> B[Webhook]
B --> C[DeepTagger]
C --> D[CRM/Database]
D --> E[Confirmation Email]
Use Case¶
Scenario: Contact form submissions arrive as free-text
Automation: Extract name, email, phone, company → Create CRM contact
Quick Setup¶
- Webhook Trigger
-
Receives form POST data
-
Set Node (prepare text)
-
DeepTagger Node
- Project ID: (your form project)
- Input Type: Text
-
Text:
{{$json["text"]}}
-
HTTP Request to CRM
- POST to CRM API with extracted fields
Example Input¶
Hi, I'm John Smith from Acme Corp.
My email is john@acme.com and phone is 555-1234.
Interested in your enterprise plan.
Expected Output¶
{
"name": "John Smith",
"email": "john@acme.com",
"phone": "555-1234",
"company": "Acme Corp",
"interest": "enterprise plan"
}
Related Examples¶
- Invoice Processing - File-based extraction
- Email Receipts - Email attachments