use IdcheckioPerl::Client::Object::SandboxApi;
All URIs are relative to https://localhost/rest
Method | HTTP request | Description |
---|---|---|
get_image | GET /v0/sandbox/image/{imageUid} | HTTP GET image |
get_image_list | GET /v0/sandbox/imagelist | HTTP GET images list |
get_mrz | GET /v0/sandbox/mrz/{mrzUid} | HTTP GET mrz |
get_mrz_list | GET /v0/sandbox/mrzlist | HTTP GET mrz list |
ARRAY[string] get_image(image_uid => $image_uid, raw_type => $raw_type, face => $face, light => $light)
HTTP GET image
GET image
use Data::Dumper;
my $api_instance = IdcheckioPerl::Client::SandboxApi->new();
my $image_uid = 'image_uid_example'; # string | EnumDemoDocsImage
my $raw_type = 'raw_type_example'; # string | Image raw type
my $face = 'face_example'; # string | Image face
my $light = 'light_example'; # string | Image light
eval {
my $result = $api_instance->get_image(image_uid => $image_uid, raw_type => $raw_type, face => $face, light => $light);
print Dumper($result);
};
if ($@) {
warn "Exception when calling SandboxApi->get_image: $@\n";
}
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] |
ARRAY[string]
No authorization required
- Content-Type: Not defined
- Accept: /
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ImageListResponse get_image_list()
HTTP GET images list
GET images list
use Data::Dumper;
my $api_instance = IdcheckioPerl::Client::SandboxApi->new();
eval {
my $result = $api_instance->get_image_list();
print Dumper($result);
};
if ($@) {
warn "Exception when calling SandboxApi->get_image_list: $@\n";
}
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]
MrzResponse get_mrz(mrz_uid => $mrz_uid)
HTTP GET mrz
GET mrz
use Data::Dumper;
my $api_instance = IdcheckioPerl::Client::SandboxApi->new();
my $mrz_uid = 'mrz_uid_example'; # string | EnumDemoDocsMrz
eval {
my $result = $api_instance->get_mrz(mrz_uid => $mrz_uid);
print Dumper($result);
};
if ($@) {
warn "Exception when calling SandboxApi->get_mrz: $@\n";
}
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]
MrzListResponse get_mrz_list()
HTTP GET mrz list
GET mrz list
use Data::Dumper;
my $api_instance = IdcheckioPerl::Client::SandboxApi->new();
eval {
my $result = $api_instance->get_mrz_list();
print Dumper($result);
};
if ($@) {
warn "Exception when calling SandboxApi->get_mrz_list: $@\n";
}
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]