Microservice Orchestration
Microservice Orchestration
Use as microservice orchestrator to call API´s meanwhile mantains business rules out of code in a visible way
Process driven software
Process driven software
Develop software that runs business-process-driven and keep business rules out of code
Getting Started
You can easily start by following this steps, for more details, see documentation.
- Design your business process flow using your prefered BPMN editor:
For a list of compatible bpmn editors, see bpmn editors. For some examples of bpmn file flows, see flow examples
- Deploy your flow (*.bpmn file) into plataform:
curl -i -X POST -H "Content-Type: text/xml;charset=UTF-8" --data-binary "@<REPLACE_WITH_YOUR_PROCESS_FLOW_FILE_NAME>.bpmn" "https://v1.api.inovabpm.com.br/process/deploy"
- Start your process calling the Process Start API:
curl -i -X POST -H "Content-Type: application/json;charset=UTF-8" --data "{field1:'xyz',field2:'xyz'}" "https://v1.api.inovabpm.com.br/process/start/<REPLACE_WITH_YOUR_PROCESS_FLOW_ID>"