Developer API Documentation


Personal GET Endpoints

List of open tickets assigned to you (array):

// PHP Example Using the TicksyAPI Class

define('TICKSY_DOMAIN','DOMAIN');
define('TICKSY_KEY','KEY');

$ticksyAPI = new TicksyAPI();
$url = 'https://api.ticksy.com/v1/'.TICKSY_DOMAIN.'/'.TICKSY_KEY.'/my-tickets.json';
$result = json_decode($ticksyAPI->ticksy_api_post($url),true);

Your responses needed (integer):

// PHP Example Using the TicksyAPI Class

define('TICKSY_DOMAIN','DOMAIN');
define('TICKSY_KEY','KEY');

$ticksyAPI = new TicksyAPI();
$url = 'https://api.ticksy.com/v1/'.TICKSY_DOMAIN.'/'.TICKSY_KEY.'/my-responses-needed.json';
$result = json_decode($ticksyAPI->ticksy_api_post($url),true);