The delete command deletes the instance.

JSON Input Data Format
{
    "id": string,
    "name": string,
    "yaml": string,
    "force": boolean
}
id * Specifies the ID of the instance.
name * Specifies the name of the solution.
yaml * Specifies the Docker Compose YAML code that will be deployed.
force * Specifies whether to force a redeployment or update. If set to true, the solution will be redeployed and updated.
* 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"
}

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