Sovereign Platform is in pre-launch alpha.
Not yet available to purchase. Sign up for our mailing list for upcoming launch dates.
Sovereign Platform is in pre-launch alpha.
Not yet available to purchase. Sign up for our mailing list for upcoming launch dates.
This guide walks you through building and running your first workflow in Sovereign Workflows. By the end, you will have created a simple automation that fetches data and processes it — all through the visual Studio editor.
After your stack is running (see Quick Start), navigate to your Sovereign deployment in the browser. From the main dashboard, click New Workflow to open the Studio editor.
The Studio is your workspace for building workflows visually. You will see three main areas:
In the Node Palette on the left, find the Sample connector and expand it. You will see several actions available, including Echo. This action takes an input message and returns it — perfect for testing.
Drag the Echo action from the palette onto the canvas. A new node appears representing this step. Click on it to open its settings in the Properties Panel.
In the Properties Panel, you will see fields for configuring the action. For the Echo action, enter a message — something like "Hello from my first workflow!" — in the message field.
Every workflow needs at least one step. For your first workflow, a single Echo node is enough to demonstrate the concept. But workflows become powerful when you chain steps together.
To add a second step, drag another action onto the canvas — for example, the Data action from the Sample connector. Then connect the two nodes by dragging from the output handle of your first node to the input handle of your second node. The arrow between them defines the order of execution.
How Connections Work
Connections between nodes control execution flow. When a step succeeds, the next connected step runs automatically. You can also add failure connections to handle errors gracefully.
Once you have placed and connected your nodes:
The Run Panel will appear showing the progress of your execution. You will see each step transition through its statuses: first it becomes ready, then it runs, and finally it succeeds (or fails if something went wrong).
After your workflow completes, click on any step in the execution view to see its details:
For your Echo action, you should see your message returned in the output.
Execution History
Every time you run a workflow, a new execution is created. You can view all past executions from the Monitoring Executions page, filter by status, and drill into any step's details.
When you clicked Run, the following happened automatically:
You did not need to configure any of this — the orchestration engine handles it for you.
Now that you have built and run your first workflow, explore these topics to go deeper: