PHP code example of jumper423 / voximplant-phpsdk
1. Go to this page and download the library: Download jumper423/voximplant-phpsdk 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/ */
jumper423 / voximplant-phpsdk example snippets
onfigure API key: api_key
Voximplant\Configuration::getDefaultConfiguration()->setApiKey('api_key', 'YOUR_API_KEY');
// Configure account name: account_name
Voximplant\Configuration::getDefaultConfiguration()->setApiKey('account_name', 'YOUR_ACCOUNT_NAME');
$api_instance = new \Voximplant\Api\AccountsAuthenticationApi();
try {
$result = $api_instance->logon();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AccountsAuthenticationApi->logon: ', $e->getMessage(), PHP_EOL;
}