PHP code example of art-of-wifi / unifi-cloud-api-client
1. Go to this page and download the library: Download art-of-wifi/unifi-cloud-api-client 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/ */
art-of-wifi / unifi-cloud-api-client example snippets
FiCloudApiClient\Client\UniFiClient;
$apiKey = 'your_api_key_here';
try {
// Initialize the UniFi Cloud API client, optionally you can pass a different base URI
$unifiClient = UniFiClient::getInstance($apiKey);
// Enable debug mode, optional
$unifiClient->setDebug(true);
// Set a custom timeout to override the default value of 10 seconds, optional
$unifiClient->setTimeout(5);
// Fetch and echo the version
echo 'UniFi Cloud API client version: ' . $unifiClient->getVersion() . PHP_EOL;
// List all hosts
$hosts = $unifiClient->hosts->list();
print_r($hosts);
// Get host by ID
$hostId = 'your_host_id_here';
$host = $unifiClient->hosts->get($hostId);
print_r($host);
// List all sites
$sites = $unifiClient->sites->list();
print_r($sites);
// List all devices with optional filter parameters
$devices = $unifiClient->devices->list(
['900A6F00301100000000074A6BA90000000007A3387E0000000063EC9853:123456789', '900A6F00301100000000074A6BA90000000007A3387E0000000063EC9853:987654321'],
'2024-07-15T07:01:13Z'
);
print_r($devices);
echo 'Effective URI: ' . $unifiClient->getEffectiveUri() . PHP_EOL;
echo 'Transfer time: ' . $unifiClient->getTransferTime() . ' seconds' . PHP_EOL;
echo 'Response status: ' . $unifiClient->getResponseStatusCode() . PHP_EOL;
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
}