The images-list command lists all container images, virtual machine images, and ISO files that are in the store.

JSON Input Data Format
{
    "id": string
}
id * Specifies the ID of the Sky Node.
* 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": "/var/node/store/cn-alpine-3.19.tar.gz"
        },
        {
            "name": "/var/node/storevm/vm-debian-12.tar.gz"
        },
        {
            "name": "/var/node/iso/debian-12.iso"
        },
        ...
    ]
}

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