Installation
Auto Images
This endpoint retrieves a list of available autoinstall images for the specified KVM VPS.
The api_host
parameter, obtained from the “Create AUTH-session” response, is dynamically set in the URL.
Provide the signature
, kvm_id
, and valid_until
parameters to fetch the available images.
POST
Body
application/x-www-form-urlencoded
Required parameters to retrieve the list of autoinstall images.
All parameters must be passed in the request body as `application/x-www-form-urlencoded`.
The session signature obtained from the "Create AUTH-session" call.
Example:
"session_signature_12345"
The unique identifier of the KVM VPS for which the autoinstall images are being retrieved.
This value is specific to your VPS.
Example:
"kvm_xxxxx_yyyyy"
The expiration timestamp for the session, as obtained from the "Create AUTH-session" call.
Ensure that the session is valid and has not expired.
Example:
"2025-01-12T15:30:00Z"
Response
200
application/json
A list of available autoinstall images retrieved successfully.
Example:
[
"cloudinit_almalinux-8",
"cloudinit_almalinux-9",
"cloudinit_arch-linux_20231115",
"cloudinit_centos-7",
"cloudinit_centos-stream-8",
"cloudinit_centos-stream-9",
"cloudinit_debian-bookworm",
"cloudinit_rocky-9",
"cloudinit_ubuntu-lts-16-04",
"cloudinit_ubuntu-lts-18-04",
"cloudinit_ubuntu-lts-20-04",
"cloudinit_ubuntu-lts-22-04",
"cloudinit_ubuntu-lts-24-04",
"debian-bullseye",
"debian-buster",
"debian-stretch",
"windows-10",
"windows-server-2016",
"windows-server-2019",
"windows-server-2022"
]
The status of the operation.
Example:
"success"
Was this page helpful?