1. Go to this page and download the library: Download bradfeehan/desk-php 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/ */
bradfeehan / desk-php example snippets
use Desk\Client;
$client = Client::factory(array(
'subdomain' => 'foo',
'username' => 'myuser',
'password' => 'secret',
));
foreach ($client->getIterator("ListUsers") as $user) {
// do things with $user
$casesForCurrentUser = $user->getLink("cases")->execute();
}