Publish
The BPMN block used to change the system status (doesn't related with users statuses) for the request object from Draft to Moderation
Implementation type
Connector
Connector ID
http-connector
Connector inputs
headers
Map
method
POST
payload script example
JSON.stringify({
{
execution_id: execution.getId(),
stage:"stage text",
is_completed: bool
}
});
where
- execution_id - id of runtime process, define execution context in Camunda
- stage - is the name of the process step to display in the monitoring table in the Accton admin panel
- Accton admin panel is_completed - is the flag to define the finishing step of the process for the monitoring table in the Accton admin panel
url script
execution.getVariable('domain') + '/api/bp/publish';