The run command is used to execute (run) a Flow-fx object.

JSON Input Data Format
{
    "id": string,
    "postdata": string
}
id * Specifies the ID of the Flow-fx object.
postdata Specifies the optional input JSON data that will be forwarded to the START step.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "payload": "The process was successfully completed",
    "done": "1,5,2,3",
    "lastitem": 3,
    "retdata": "{\"result\":\"\\\"OK\\\"\",\"payload\":\"\\\"The process was successfully completed\\\"\"}",
    "logtime": "2024-08-03-18"
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}