Skip to content

flowdee/ticksy-api-php-class

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

#Ticksy API PHP Class This PHP Class was created in order to communicate with the Ticksy API. For more information please take a look into the official Ticksy API documentation.

##Installation In order to use this class respectively the API you need your Domain and API Key. Please visit your profile page and navigate to API (BETA).

// Including class to your project
require('Ticksy.php');

// Setup Ticksy with your credentials
$ticksy = new Ticksy(TICKSY_DOMAIN, TICKSY_API_KEY);

Please replaced TICKSY_DOMAIN and TICKSY_API_KEY with your personal credentials.

##Examples ###Receive open tickets

// Receive all open tickets assigned to you
$tickets = $ticksy->my_tickets();

// Receive all open tickets
$tickets = $ticksy->open_tickets();

##What's coming next? Right now it's possible to receive all information like tickets, responses and comments.

I'm planning to enhance the class in order to receive for specific data, for example list of all open/assigned tickets with responses needed. Please take a look into the issues and create a new one if you need a special function/enhancement.

If you don't want to miss an update or say hello, follow me on Twitter: @flowdee 😉 ##Credits

Releases

No releases published

Packages

No packages published

Languages