Skip to main content

Getting Started with the UI

From login to your first running workflow in 5 minutes.


Step 1: Log In

Navigate to your organization's apptor flow URL (e.g., https://demo.flow.apptor.io).

Login options:

  • Email + Password — standard login
  • SSO (OIDC/SAML) — if your organization has configured an Identity Provider, click the SSO button and authenticate with your company account (Google, Okta, Azure AD, etc.)

After login, you're taken to the Workflows dashboard (/flows).


Step 2: Create Your First Workflow

  1. On the Workflows dashboard, click Create Workflow
  2. Enter a name (e.g., "My First Workflow") and optionally a description
  3. Click Create — the workflow opens in the Designer

Step 3: Add Nodes

In the Designer:

  1. Click the + button or press N to open the Node Palette
  2. Browse by category or search for a node type
  3. Click a node to add it to the canvas, or drag it to a specific location
  4. Connect nodes by hovering over a node's edge until you see a connection handle, then drag to another node

Minimum for a runnable workflow:

  • One Start Event (🚀)
  • One or more processing nodes
  • One End Event (🎯)
  • Connections between all nodes

Step 4: Configure Nodes

  1. Click a node on the canvas to select it
  2. The Properties Panel opens on the right
  3. Fill in the required fields (marked with *)
  4. Click anywhere on the canvas to deselect and close the panel

Step 5: Save the Workflow

  • Click the Save button in the toolbar (or press Ctrl+S / Cmd+S)
  • The workflow is saved as the current development version
  • A green "Saved" indicator appears briefly

Step 6: Execute the Workflow

  1. Click the Run button (▶) in the toolbar
  2. In the execution dialog, enter input data as JSON (optional)
  3. Select environment: DEVELOPMENT for testing
  4. Click Execute
  5. The Execution Console opens at the bottom of the screen showing live logs

Step 7: View Results

After execution completes:

  • Green nodes = completed successfully
  • Red nodes = failed
  • The Execution Console shows all node logs with timestamps
  • Click any log entry to see the full variables at that point

To view the execution details later:

  • Navigate to Execution History (/process-instances)
  • Click on any run to see the full details

Keyboard Shortcuts

ShortcutAction
Ctrl+S / Cmd+SSave workflow
Ctrl+Z / Cmd+ZUndo
Ctrl+Shift+Z / Cmd+Shift+ZRedo
Delete / BackspaceDelete selected node or connection
NOpen Node Palette
Ctrl+A / Cmd+ASelect all nodes
Ctrl+C / Cmd+CCopy selected nodes
Ctrl+V / Cmd+VPaste copied nodes
ScrollZoom in/out
Space+DragPan canvas
Ctrl+Shift+FFit diagram to screen
LToggle layout direction (LR ↔ TB)

Next Steps