datana-gmbh/formulario-api

1.5.0 2023-12-15 08:47 UTC

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