There was an error while loading. Please reload this page.
CoolRunner SDK for API v3 needs to be instantiated before it can be used.
It is a singleton, and requires your registered email and designated token to be usable.
Get you API token here: Integration
If the page is unaccessible please contact our support
$email = '<your email here>'; $token = '<your token here>'; $developer_id = '<your company or extention name>'; //[optional] $api = CoolRunnerSDK\API::load($email, $token, $developer_id);
(associative arrays, stdClass objects or raw JSON depending on your configuration)
$email = '<your email here>'; $token = '<your token here>'; $developer_id = '<your company or extention name>'; //[optional] $mode = APILight::OUTPUT_MODE_ASSOC //Alternative modes are: OUTPUT_MODE_RAW | OUTPUT_MODE_OBJECT [Optional and defaults to OUTPUT_MODE_ASSOC] $api = CoolRunnerSDK\APILight::load($email, $token, $developer_id, $mode);