Learn how to set up your first workflow automation in under 5 minutes.
NeuraFlow is the most powerful AI workflow automation platform available today. This guide walks you through creating your account, setting up your first workspace, and building your first automation — all in under five minutes.
After signing up, you will be prompted to create your first workspace. A workspace is a shared environment where your team collaborates on projects and automations. You can create multiple workspaces for different teams or clients.
Choose a descriptive workspace name that reflects your team or project. You can always rename it later from Settings.
Projects organize related automations. Think of them as folders for your workflows. Click the 'New Project' button on the dashboard and choose from a blank template or one of our pre-built starters.
Navigate to the Automations tab within your project and click 'New Automation'. The visual builder opens where you can define your trigger, set conditions, and add action steps.
{
"trigger": {
"type": "webhook",
"endpoint": "/api/webhooks/my-first-hook"
},
"actions": [
{
"type": "send_email",
"to": "{{trigger.data.email}}",
"template": "welcome"
}
]
}All automation configurations are version-controlled. You can view history and roll back changes at any time from the automation settings.