The instance-docker-stop command stops a Docker container process on the instance.

JSON Input Data Format
{
    "id": string,
    "name": string
}
id * Specifies the ID of the instance where the command will be executed.
name * Specifies the name or the unique ID of the stopped Docker container to be removed.
* 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 outpur of the command..."
}

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