Skip to main content
Flowker is built around a set of interconnected concepts. Understanding how they relate to each other helps you design, configure, and run workflows effectively. The diagram at the end of this page shows how everything connects.

Workflows


A workflow is the definition of a business process — the sequence of steps Flowker follows to complete an operation. Workflows go through a lifecycle:
StatusDescription
draftCreated and editable. Not yet runnable.
activeReady to execute. Structure is locked.
inactiveDeactivated. No new executions accepted.
To move a workflow between states, use the activate, deactivate, and move to draft endpoints.

Nodes and edges


Nodes are the individual steps of a workflow — what you might call tasks in business terms. Each node is a unit of work: receive an event, call a service, evaluate a condition, or perform an action. Flowker supports four node types:
TypePurposeWhen to use
triggerEntry point for the workflowAlways the first node. Starts execution when an event occurs.
executorCalls an external service via a configured executorWhen you need to call an external API or integration.
conditionalBranches execution based on conditionsWhen the next step depends on the result of a previous one.
actionPerforms a built-in action (log, transform, etc.)For built-in operations that don’t require external calls.
Edges connect nodes and define the order of execution. An edge can carry a condition — the next node only runs if the condition evaluates to true.

Catalog


The catalog is the read-only registry of all built-in providers, executors, and triggers available in Flowker. You cannot create or modify catalog entries — you discover them. Before configuring any integration, browse the catalog to see what’s already available:
  • Executors are the specific capabilities you can invoke inside a workflow node (e.g., HTTP requests, data transformations).
  • Triggers define the event types that can start a workflow (e.g., webhooks).
Use these endpoints to explore what’s available:

Configurations


Before you can use an executor in a workflow, you need to configure it. An executor configuration defines how Flowker connects to an external service — including the base URL, authentication credentials, and the specific HTTP endpoints to call. Executor configurations go through a lifecycle:
StatusDescription
unconfiguredCreated but not yet configured with connection details.
configuredConnection details provided, ready to test.
testedConnectivity test passed successfully.
activeReady to be used in workflow executions.
disabledTemporarily taken out of service.
Use the Executor configurations endpoints to set up and manage your integrations.

Provider configurations


Flowker uses a three-tier model for external integrations:
TierWhat it isNature
ProviderA type of external service (e.g., Midaz, Tracer).Static — defined in the catalog.
Provider ConfigurationA configured instance of a provider with credentials and a base URL.Dynamic — you create and manage these.
Executor ConfigurationA specific operation on a provider, with endpoints and field mappings.Dynamic — references a provider configuration.
A provider configuration connects Flowker to a live instance of an external service. You supply the base URL, authentication credentials, and any provider-specific settings. The configuration is validated against the provider’s JSON Schema from the catalog. Provider configurations have two statuses: active (in use) and disabled (temporarily offline). You can test connectivity at any time to verify the connection is working. Use the Provider configurations endpoints to create, manage, and test your provider connections.

Templates


Workflow templates are pre-built workflow patterns available in the catalog. Instead of defining a workflow from scratch, you can select a template, fill in its parameters, and create a ready-to-use workflow in seconds. Each template has a parameter schema that defines what inputs it expects (e.g., which provider configuration to use, threshold values). When you retrieve a template, the schema is dynamically enriched — fields that reference provider configurations are populated with your active configurations, so you can pick from a dropdown instead of entering raw UUIDs. To use a template:
  1. Browse available templates in the catalog.
  2. Get the template detail to see its parameter schema.
  3. Optionally validate your parameters before creating.
  4. Create a workflow from the template.
The resulting workflow is created in draft status, so you can review and adjust it before activating.

Executions


An execution is a runtime instance of a workflow. Every time you trigger a workflow, Flowker creates a new execution and processes its nodes in order. Each execution tracks:
  • executionId — Unique identifier for this run.
  • status — Current state: pending, running, completed, or failed.
  • stepResults — The output of each node that ran, in order.
  • finalOutput — The aggregated result of the entire execution.
Use Get execution status to monitor progress and Get execution results to retrieve the full output.
The main status endpoint (GET /v1/executions/{id}) returns executionId, workflowId, status, currentStepNumber, totalSteps, startedAt, completedAt, and errorMessage. The stepResults and finalOutput fields are only available via the dedicated results endpoint (GET /v1/executions/{id}/results).

Idempotency


Every execution request requires an Idempotency-Key header. This is a UUID you generate and send with each request to uniquely identify it. If Flowker receives a second request with the same Idempotency-Key, it returns the original response instead of creating a new execution. This makes retries safe — network failures and timeouts won’t result in duplicate runs.
Idempotency-Key: 7f3e1a2b-4c5d-6e7f-8a9b-0c1d2e3f4a5b
Always use a fresh UUID for each new execution. Reuse the same key only when retrying the exact same request.

Dashboard


The Dashboard API provides aggregated summaries of your workflows and executions — useful for building operational dashboards and monitoring tools. Use it whenever you need a high-level view of system health without querying individual executions.
  • Workflow summary returns totals and breakdowns by status (draft, active, inactive).
  • Execution summary returns totals and breakdowns by status, with optional time range and status filters.
Example response from GET /v1/dashboards/executions:
{
  "total": 12847,
  "completed": 11903,
  "failed": 712,
  "pending": 130,
  "running": 102
}
Common use cases:
  • Monitoring execution health — track completion and failure rates over time to spot degradation early.
  • Building status pages — surface workflow throughput and success metrics in internal or client-facing dashboards.
  • Alerting on failure rate spikes — compare failed / total against a threshold to trigger alerts before issues cascade.

Audit and compliance


Flowker automatically records an immutable audit trail for every significant action — workflow creation, status changes, execution starts and completions, executor calls, and configuration changes. You don’t need to enable or configure anything; audit logging happens internally. Key properties of the audit system:
  • Immutable — audit entries are append-only and cannot be modified or deleted.
  • Hash chain integrity — each entry includes a cryptographic hash linking it to the previous entry, making tampering detectable.
  • Flexible search — use Search audit events to query events by type, action, result, resource, or date range.
  • Chain verification — use Verify hash chain to confirm the audit trail has not been tampered with.

How it all fits together


Flowker’s concepts build on each other in a clear sequence:
  1. Explore the catalog to discover available providers, executors, triggers, and templates.
  2. Configure providers to connect Flowker to live instances of external services.
  3. Configure executors to define the specific operations and endpoints your workflow needs.
  4. Define workflows — either from scratch or from a template — referencing your executor configurations.
  5. Execute workflows to run your business process and retrieve results.
  6. Monitor and audit — use the dashboard for operational summaries and the audit API for compliance.
Ready to see this in practice? Follow the Getting started guide to run your first workflow end to end.