Skip to content

Getting Started

This guide walks you from a fresh account to your first running automation.

Open the Nexomatic web application in your browser. On first load you will see the login screen.

An Admin can invite you from the User Management screen. You will receive an email with a registration link. Opening that link pre-fills the invite token — after registering you can log in immediately.

If no users exist yet, clicking Register creates the first account with Admin access. No email verification is required for the first user.


Enter your email and password on the login screen and click Sign In.

If your organisation uses a social provider (Google, Microsoft, GitHub), click the corresponding button and complete the OAuth flow in the pop-up window.

Once authenticated you are taken to the Dashboard.


The application has three main areas:

AreaDescription
Sidebar (left)Navigation between sections. Collapses to icon-only mode.
Topbar (top)Search, date filters, theme toggle, and your account menu.
Main areaThe content of the currently selected page.

A typical Nexomatic automation follows this sequence:

flowchart LR S["Event Source
(Webhook, Schedule, EventGrid)"] H["Hub"] A["Sink Agent
(your infrastructure)"] T["Your Task
(Python / PowerShell)"] S --> H --> A --> T
  1. Define a Sink Type — describes the kind of agent that will run your code (Python, PowerShell, etc.).
  2. Install a Sink — deploy the agent process on your Windows server, Linux host, or Kubernetes cluster. See Install a Sink.
  3. Create an Action — specifies the code module the sink should execute and what happens on success or failure.
  4. Create an Event Type — a named trigger that links a source type, a sink type, and an action together.
  5. Set up a Source — e.g. configure a webhook URL or cron schedule that fires the Event Type.
  6. Watch Events flow — monitor execution on the Events and Logs screens.