Trigger workflow with HTTP request
Trigger workflow on schedule
Make HTTP request to any URL
Send an email
Delay workflow execution
Branch workflow based on condition
Route workflow based on value
No node selected
Select a node to configure
FlowForge is a visual workflow automation tool that helps you connect different services and automate tasks without writing code.
This tutorial will guide you through creating your first workflow.
The workspace has three main areas:
We'll create a simple workflow that:
Every workflow needs a trigger to start. Let's add a Schedule trigger that will run our workflow daily.
👉 Click and drag the "Schedule" node from the left sidebar to the canvas
Trigger workflow on schedule
Now let's add a node that will fetch data from an API when the workflow is triggered.
👉 Click and drag the "HTTP Request" node to the right of the Schedule node
Make HTTP request to any URL
Now we need to connect the Schedule node to the HTTP Request node so the workflow knows the order of operations.
👉 Click and drag from the output port (right side) of the Schedule node to the input port (left side) of the HTTP Request node
Finally, let's add a node that will email us the results from the API request.
👉 Add an "Email" node to the right of the HTTP Request node and connect them
Send an email
Now let's configure each node:
👉 Double-click each node to configure it
Your workflow is now ready to run! You can:
Congratulations! You've built your first workflow automation.