A Zapier zap that takes a Tally form response, runs it through a Zapier AI step to categorize the request, and stores the tagged record in Airtable. Cleaner data with zero manual sorting.
{
"version": "1.0",
"platform": "zapier",
"title": "Tally Form to Airtable with AI Tagging",
"steps": [
{
"id": 1,
"type": "trigger",
"app": "Tally",
"event": "New Submission"
},
{
"id": 2,
"type": "action",
"app": "Zapier AI",
"event": "Analyze and Return Data",
"config": {
"prompt": "Categorize this request as Sales, Support, or Other: {{1.message}}",
"output": "category"
}
},
{
"id": 3,
"type": "action",
"app": "Airtable",
"event": "Create Record",
"config": {
"base": "Requests",
"table": "Inbox",
"fields": {
"Email": "{{1.email}}",
"Message": "{{1.message}}",
"Category": "{{2.category}}"
}
}
}
]
}