Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 560 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 560 Bytes

terminal42/cashctrl-api

An API client for the REST API of cashctrl.com. This client is currently used for our own projects and is subject to heavy changes.

Installation

$ composer.phar require terminal42/cashctrl-api ^2.0@dev

If you are using Symfony, we recommend to use our CashCtrl Bundle.

Usage

$subdomain  = 'companyname';
$apiKey     = 'foobar';

$client = new Client($subdomain, $apiKey);

// Example call to get person list:
(new PersonEndpoint($client))->list();