simplyadmire / zaaksysteem
Zaaksysteem API Client
Installs: 2 205
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 2
Open Issues: 1
Requires
- php: >=5.5.9
- beberlei/assert: ^2.4
- guzzlehttp/guzzle: ^6.0
Requires (Dev)
- codeclimate/php-test-reporter: ^0.1.2
- phpunit/phpunit: ^4.8
README
This package is a PHP based client for Zaaksysteem (http://zaaksysteem.nl/). The client is standalone, meaning it does not depend on any PHP framework. Implementations for frameworks like Flow are planned and will be released as separate packages.
Usage
use SimplyAdmire\Zaaksysteem\V1\Configuration; use SimplyAdmire\Zaaksysteem\V1\Client; use SimplyAdmire\Zaaksysteem\V1\Domain\Repository\CaseTypeRepository; $configuration = new Configuration([ 'username' => '<username>', 'apiBaseUrl' => '<api base url excluding version prefix>', 'apiKey' => '<api key>' ]); $client = new Client($configuration); $repository = new CaseTypeRepository($client); $caseTypes = $repository->findAll();
Supported API's
Object
Manual: https://mintlab.zaaksysteem.nl/man/Zaaksysteem::Manual::API::Object.
For this API you have to configure an "Extern Koppelprofiel" in your Zaaksysteem instance.
Implemented methods:
- get
- list
V1
Manual: https://mintlab.zaaksysteem.nl/man/Zaaksysteem::Manual::API::V1.
For this API you have to configure an "Zaaksysteem API" in your Zaaksysteem instance.
Below you can find the implemented methods per API:
Case
- get
- list
- create
- update
- transition
- prepare file
Case\Document
- get
- list
- download file
Case\CaseType
- get
- list
ControlPanel
- get
- list
- create
- update
ControlPanel\Host
- get
- list
- create
- update
ControlPanel\Instance
- get
- list
- create
- update
Case\Subject
- create
Release history
- Next release
- Breaking change: api id is no longer part of the api base url
- 1.0.1 Bugfix release
- 1.0.0 Initial release