datana-gmbh / formulario-api
表单API
1.5.0
2023-12-15 08:47 UTC
Requires
- php: >=8.2
- datana-gmbh/mandantencockpit-contracts: ^1.1
- fakerphp/faker: ^1.23
- oskarstark/trimmed-non-empty-string: ^1.0
- psr/log: ^1.1 || ^2.0 || ^3.0
- symfony/http-client: ^4.4 || ^5.1 || ^6.0
- thecodingmachine/safe: ^1.0 || ^2.0
- webmozart/assert: ^1.7
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-03 10:14:22 UTC
README
用法
安装
composer require datana-gmbh/formulario-api
设置
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);
数据输入
在您的代码中,您应该为 Datana\Formulario\Api\DateneingabenApiInterface
进行类型提示
通过案号(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']);
通过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);
统计数据
在您的代码中,您应该为 Datana\Formulario\Api\StatisticsApiInterface
进行类型提示
获取为Mandantencockpit发送的邀请邮件数量
use Datana\Formulario\Api\StatisticsApi; use Datana\Formulario\Api\FormularioClient; $client = new FormularioClient(/* ... */); $api = new StatisticsApi($client); $api->numberOfCockpitInvitationMailsSent(); // 42