Quick start
Build a working automation in about ten minutes.
This one is deliberately self-contained — it does not need any of your systems connected, so you can see how a workflow is put together before wiring it to anything real.
Step 1: Sign in
- Go to flow.work.studio
- Sign in with your email or SSO provider
- You'll land on the Dashboard
No account yet? Create one. The same account works for Flow and My Studio.
Step 2: Create Your First Automation
Open the Automations Section
- Click Automations in the left sidebar
- Click the + New Automation button
Choose a Trigger
Every automation starts with a trigger — the event that kicks off your workflow.
For this tutorial, select Manual trigger.
Add Steps
Steps are the building blocks of your automation.
- Click the + button below your trigger
- Select VARIABLE to set a greeting
- Configure:
- Name:
greeting - Value:
Hello from Flow!
- Name:
- Click + again
- Select FUNCTION to process the greeting
Add this code:
const message = context.var.greeting; console.log("Automation executed:", message); return { message, timestamp: new Date().toISOString() };
Save and Test
- Click Save in the top-right
- Click Test to run your automation
- View the output in the test panel!
Step 3: Explore More Features
Now that you've built your first automation, here is what to explore next:
Connect to external services like Slack, Salesforce, or databases.
Use CONDITION for branching, LOOP for iteration, and FUNCTION for custom code.
Track execution history and debug issues.
What's Next?
Ready to go deeper? The concepts behind Flow.
Follow step-by-step tutorials for common use cases.
Set up integrations with your existing tools.
Need help? Email support@work.studio.