All URIs are relative to https://localhost/rest
Method | HTTP request | Description |
---|---|---|
getImage | GET /v0/sandbox/image/{imageUid} | HTTP GET image |
getImageList | GET /v0/sandbox/imagelist | HTTP GET images list |
getMrz | GET /v0/sandbox/mrz/{mrzUid} | HTTP GET mrz |
getMrzList | GET /v0/sandbox/mrzlist | HTTP GET mrz list |
string[] getImage($image_uid, $raw_type, $face, $light)
HTTP GET image
GET image
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new invoker\Api\SandboxApi();
$image_uid = "image_uid_example"; // string | EnumDemoDocsImage
$raw_type = "raw_type_example"; // string | Image raw type
$face = "face_example"; // string | Image face
$light = "light_example"; // string | Image light
try {
$result = $api_instance->getImage($image_uid, $raw_type, $face, $light);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SandboxApi->getImage: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
image_uid | string | EnumDemoDocsImage | |
raw_type | string | Image raw type | [optional] |
face | string | Image face | [optional] |
light | string | Image light | [optional] |
string[]
No authorization required
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\model\ImageListResponse getImageList()
HTTP GET images list
GET images list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new invoker\Api\SandboxApi();
try {
$result = $api_instance->getImageList();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SandboxApi->getImageList: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json; charset=utf-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\model\MrzResponse getMrz($mrz_uid)
HTTP GET mrz
GET mrz
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new invoker\Api\SandboxApi();
$mrz_uid = "mrz_uid_example"; // string | EnumDemoDocsMrz
try {
$result = $api_instance->getMrz($mrz_uid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SandboxApi->getMrz: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
mrz_uid | string | EnumDemoDocsMrz |
No authorization required
- Content-Type: Not defined
- Accept: application/json; charset=utf-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\model\MrzListResponse getMrzList()
HTTP GET mrz list
GET mrz list
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new invoker\Api\SandboxApi();
try {
$result = $api_instance->getMrzList();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SandboxApi->getMrzList: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json; charset=utf-8
[Back to top] [Back to API list] [Back to Model list] [Back to README]