gentor/kayako-php-api

Kayako Rest API PHP SDK

dev-master 2018-12-12 19:25 UTC

This package is auto-updated.

Last update: 2024-04-13 10:49:42 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'
]);

Documentation

Kayako API