Skip to content

Welcome to APIO core engine

APIO core is a simple workflow engine with great extensibility.

Getting Started

Get started by creating a new workflow.

Go to menu Orchestration/Editor.

Create a new activity named demo.

Something simple

Add a nodes to prepare a static content.

add node

add demo response

Add a node to complete the workflow.

add demo end

Wire the nodes together.

wire nodes

Save

save demo

Bind to an HTTP endpoint

Create a new route endpoint

Go to menu Orchestration/Startup Events.

Create a new route.

add route

Bind to your activity

bind to activity

Call your endpoint

Call your endpoint with any HTTP client:

bash
curl http://<host>/api/v01/public/demo
{"message":"hello, world"}