gentor / kayako-php-api
Kayako Rest API PHP SDK
dev-master
2018-12-12 19:25 UTC
Requires
- php: >= 7.0
- guzzlehttp/guzzle: ~6.0
This package is auto-updated.
Last update: 2024-11-13 12:01:37 UTC
README
PHP SDK for Kayako Rest API
Installation
Installation using composer:
composer require gentor/kayako-php-api
Usage
$client = new Client([ 'base_url' => 'base_url', 'client_id' => 'client_id', 'client_secret' => 'client_secret', 'username' => 'username', 'password' => 'password', ]);
- Create User
$user = $client->users->create([ 'role_id' => 4, 'full_name' => 'API User', 'email' => 'api.user@test.com' ]);