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.
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();
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
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:
- get
- list
- create
- update
- transition
- prepare file
- get
- list
- download file
- get
- list
- get
- list
- create
- update
- get
- list
- create
- update
- get
- list
- create
- update
- create
- 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