The DeskPRO PHP SDK is a simple class to access and interact with DeskPRO's REST API. It wraps the actual requests up in an easy-to-use API of simple PHP calls.
For more information on the underlying REST API, please see our API documentation.
The PHP SDK requires PHP >= 5.2 with the cURL extension.
The best way to get started with the PHP SDK is to view the fully functioning examples in the examples folder.
The following larger projects may also serve as a useful reference:
Full documentation on the underlying API is maintained in the API documentation section in our Knowledgebase.
Note that you can explore the API interactively on your own helpdesk using the DeskPRO API browser.
1. Clone or download this repository and put the source files somewhere in your project.
2. Include the deskpro-api.php
file:
require 'deskpro-api.php';
3. Create a new instance of the API class:
$api = new \DeskPRO\Api('http://example.com/deskpro', '123:XYZ');
4. Use $api
to send API requests to your DeskPRO helpdesk. Refer to the examples
directory for fully-functional examples.
You can also install the API library through composer: https://packagist.org/packages/deskpro/deskpro-api-php
$ php composer.phar require deskpro/deskpro-api-php dev-master