1. Go to this page and download the library: Download bennetgallein/proxmoxve library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bennetgallein / proxmoxve example snippets
// Require the autoloader
e ProxmoxVE\Proxmox;
// Create your credentials array
$credentials = [
'hostname' => 'proxmox.server.com', // Also can be an IP
'username' => 'root',
'password' => 'secret',
];
// realm and port defaults to 'pam' and '8006' but you can specify them like so
$credentials = [
'hostname' => 'proxmox.server.com',
'username' => 'root',
'password' => 'secret',
'realm' => 'pve',
'port' => '9009',
];
// you can also specify token-id and token-secret to use API tokens. They will be preffered over normal username/password
$credentials = [
'hostname' => 'proxmox.server.com',
'token-id' => 'root@pam!prod',
'token-secret' => 'a806bdd1-de9a-4860-9ce0-bc427d3f2067'
]
// Then simply pass your credentials when creating the API client object.
$proxmox = new Proxmox($credentials);
$allNodes = $proxmox->get('/nodes');
print_r($allNodes);
$credentials = [
'hostname' => 'proxmox.server.com', // Also can be an IP
'username' => 'root',
'password' => 'secret',
'system' => 'pmg', // Defaults to 'pve' for the PVE API. Use 'pmg' for the PMG API.
];
$credentials = [
'hostname' => 'proxmox.server.com', // Also can be an IP
'username' => 'root',
'password' => 'secret',
'system' => 'pbs', // Defaults to 'pve' for the PVE API. Use 'pbs' for the PBS API.
];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.