Documentation Index
Fetch the complete documentation index at: https://help.teable.ai/llms.txt
Use this file to discover all available pages before exploring further.
Build with AI
Open the AI Chat in your table’s right sidebar and tell AI what you want. For example, you can say: “When a new ticket is created, check the priority field. If it’s Urgent, email the on-call team. Otherwise, email the general support queue” AI will create the complete workflow automatically. You can review the generated script, test it with real data, and enable the workflow when ready.Manual setup
- Create a workflow with trigger When Record Created.
- Select your Tickets table.
- Click Test to get a sample record.
- Add a Condition node.
- Set the rule: Priority
isUrgent. - Click Test.
- On the true path → add a Send Email action:
- To:
oncall@yourcompany.com - Subject:
Urgent ticket:+ ticket title (via +) - Body: ticket description (via +)
- To:
- On the false path → add a Send Email action:
- To:
support@yourcompany.com - Subject:
New ticket:+ ticket title - Body: ticket description
- To:
- Test both paths, then enable.
Tips
- You can nest conditions: add another condition inside the false path to separate “High” from “Low” priority.
- Combine rules with AND/OR — e.g.
Priority is Urgent AND Assignee is empty.

