Skip to main content

Quick Start

This guide gets you from a fresh login to a running workflow in a few minutes.

1. Create a project

Everything in Blokkio lives inside a project. After logging in, go to Settings → General → Projects and click New Project. Give it a name and save.

Your new project is now selected as the active context. The project name appears throughout the app in API calls, storage, and secrets.

2. Open the Workflows page

Click Workflows in the left sidebar. This is where all workflows for the current project are listed.

Click New Workflow and give it a name.

3. Add a trigger

Every workflow needs a trigger — the node that starts execution. In the Toolbox panel on the right, click the Triggers tab and drag a Manual Trigger onto the canvas.

The Manual Trigger lets you run the workflow by clicking the Execute button in the editor header. It's the simplest way to test a workflow.

4. Add an action

Switch to the Actions tab in the Toolbox. Drag an HTTP Request node onto the canvas below the trigger.

Connect them: click and drag from the output port (the dot at the bottom of the Manual Trigger) to the input port (the dot at the top of the HTTP Request node).

5. Configure the HTTP Request

Click the HTTP Request node to open its configuration dialog. Set:

  • Method: GET
  • URL: https://httpbin.org/get

Click Save changes.

6. Save and publish

Click Save in the editor header to save the draft. Then click Publish (or use the Promote Draft option) to activate the workflow.

7. Run it

Click Execute in the editor header. The Manual Trigger fires, the HTTP Request runs, and both nodes turn green on the canvas when they succeed.

Click View Logs or go to Logs in the sidebar to see the full execution detail, including the HTTP response.


Next steps: