PHP code example of ndamiens / netbox-client-php
1. Go to this page and download the library: Download ndamiens/netbox-client-php 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/ */
ndamiens / netbox-client-php example snippets
use ND\Netbox\Client;
$netbox = new Client("https://your-netbox/", "your-api-key");
foreach ($netbox->getSites() as $site) {
echo $site["name"]."\n";
}
$site = $netbox->getSite(42);
$site['comments'] = "This is a test";
$site->save();