datana-gmbh/formulario-api
最新稳定版本:1.5.0
Composer 安装命令:
composer require datana-gmbh/formulario-api
包简介
API for Formulario
README 文档
README
Usage
Installation
composer require datana-gmbh/formulario-api
Setup
use Datana\Formulario\Api\FormularioClient; $baseUri = 'https://api.formulario...'; $token = '...'; $timeout = 10; // optional $client = new FormularioClient($baseUri, $token, $timeout); // you can now request any endpoint which needs authentication $client->request('GET', '/api/something', $options);
Dateneingaben
In your code you should type-hint to Datana\Formulario\Api\DateneingabenApiInterface
Get by Aktenzeichen (string)
use Datana\Formulario\Api\DateneingabenApi; use Datana\Formulario\Api\FormularioClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FormularioClient(/* ... */); $api = new DateneingabenApi($client); $response = $api->byAktenzeichen('1abcde-1234-5678-Mustermann'); /* * to get the DateneingabenId transform the response to array * and use the 'id' key. */ $akten = $response->toArray(); $dateneingabenId = DateneingabenId::fromInt($akte['id']);
Get by ID (Datana\Formulario\Api\Domain\Value\DateneingabenId)
use Datana\Formulario\Api\DateneingabenApi; use Datana\Formulario\Api\FormularioClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FormularioClient(/* ... */); $api = new DateneingabenApi($client); $id = DateneingabenId::fromInt(123); $api->getById($id);
Statistics
In your code you should type-hint to Datana\Formulario\Api\StatisticsApiInterface
Get number of invitation mails sent for Mandantencockpit
use Datana\Formulario\Api\StatisticsApi; use Datana\Formulario\Api\FormularioClient; $client = new FormularioClient(/* ... */); $api = new StatisticsApi($client); $api->numberOfCockpitInvitationMailsSent(); // 42
统计信息
- 总下载量: 18.23k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-09-27