Skip to content

outsideopen/kaseya-api-php-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kaseya REST API Client Library for PHP

The Kaseya REST API Client Library enables you to work with Kaseya's REST API.

These client libraries are not officially supported by Kaseya.

Requirements

Installation

You can use Composer

Composer

The preferred method is via composer. Follow the installation instructions if you do not already have composer installed.

Once composer is installed, execute the following command in your project root to install this library:

composer require outsideopen/kaseya-api-client

Examples

Basic Example

// include your composer dependencies
require_once 'vendor/autoload.php';

$client = new Kaseya\Client("kaseya.example.com", "agent", "agent-password");
$service = new Kaseya\Service\Asset($client);
$results = $service->agents->all();
foreach ($results as $item) {
  echo $item['AgentId'], "<br /> \n";
}

How Do I Contribute?

Please see the contributing page for more information. In particular, we love pull requests.

About

Client Library for Kaseya REST API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages