Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagephp
<?php
require_once ('/path/to/modules/addons/nocpsforwhmcs/autoload.php');

$handler = new nocps_Handler ('$pid', 'pid'); // replace $pid with tblhosting.id
$NocpsLoginDetails = $handler->getInstance()->login; // Contains the NOC-PS access data and server id. Usually you don't need this.
$api = $handler->getInstance()->api;

// https://www.noc-ps.com/downloads/PXE_API.html
// Execute API call like:
// $api->getAvailableBandwidthData($mac);

...