The runs command is used to retrieve the log list of all runs (executions) of a Flow-fx.

JSON Input Data Format
{
    "id": string
}
id * Specifies the ID of the Flow-fx object.
* 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": [
        {
            "log": "2022-08-03-07-02-44-308-f9acf9d6-b505-49c1-8ef7-e38c98cbef1f",
            "failed": false
        },
        {
            "log": "2022-08-03-07-03-17-38-5c8670a3-5dc3-4f2c-ba36-a05fed5290ff",
            "failed": true
        },
        ...
}

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