The list-solutions command returns the names of all deployed solutions.

JSON Input Data Format
{
    "id": string
}
id * Specifies the ID of the instance.
* 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": [
        {
            "name": "web01"
        },
        {
            "name": "app01"
        },
        ...
    ]
}

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