OMN Workflow API
OMN Workflow is based on the Camunda BPMN Workflow Engine. To communicate directly with the engine Camunda’s REST API can be used. For OMN specific Workflow functionality the following REST API Endpoints can be used.
API usage guide
To access the OMN Workflow REST API you can use basically any programming language that has support for the HTTP protocol. You can even use command line tools like curl to process REST requests.
Authentication
The OMN Workflow REST API uses JSON Web Tokens (JWT) to secure the access. You have to provide a valid JWT in the authorization header to access the OMN Web REST API resources. To generate or debug JWTs you can use jwt.io.
curl header parameter
curl -H 'Authorization: Bearer <JWT-TOKEN>' ...
Endpoints
| /workflow/start Starts an OMN Workflow instance for a given WorkflowConfig Identifier |