mirror of
https://github.com/Art-of-WiFi/UniFi-API-client.git
synced 2024-11-22 02:00:21 +01:00
46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* PHP API usage example
|
||
|
*
|
||
|
* contributed by: Art of WiFi
|
||
|
* description: example basic PHP script to create a set of vouchers
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* include the config file (place your credentials etc. there if not already present)
|
||
|
* see the config.template.php file for an example
|
||
|
*/
|
||
|
require_once('config.php');
|
||
|
|
||
|
/**
|
||
|
* the voucher duration in minutes
|
||
|
*/
|
||
|
$voucher_duration = 2000;
|
||
|
|
||
|
/**
|
||
|
* the number of vouchers to create
|
||
|
*/
|
||
|
$voucher_count = 1;
|
||
|
|
||
|
/**
|
||
|
* The site where you want to create the voucher(s)
|
||
|
*/
|
||
|
$site_id = '<enter your site id here>';
|
||
|
|
||
|
/**
|
||
|
* initialize the UniFi API connection class and log in to the controller
|
||
|
*/
|
||
|
$unifi_connection = new UniFi_API\Client($controlleruser, $controllerpassword, $controllerurl, $site_id, $controllerversion);
|
||
|
$set_debug_mode = $unifi_connection->set_debug($debug);
|
||
|
$loginresults = $unifi_connection->login();
|
||
|
|
||
|
/**
|
||
|
* then we create the required number of vouchers for the requested duration
|
||
|
*/
|
||
|
$voucher_result = $unifi_connection->create_voucher($voucher_duration, $voucher_count);
|
||
|
|
||
|
/**
|
||
|
* provide feedback (the newly created voucher code, without the dash) in json format
|
||
|
*/
|
||
|
echo json_encode($voucher_result, JSON_PRETTY_PRINT);
|