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 |
list[str] get_image(image_uid, raw_type=raw_type, face=face, light=light)
HTTP GET image
GET image
import time
import idcheckio_python_client
from idcheckio_python_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = idcheckio_python_client.SandboxApi()
image_uid = 'image_uid_example' # str | EnumDemoDocsImage
raw_type = 'raw_type_example' # str | Image raw type (optional)
face = 'face_example' # str | Image face (optional)
light = 'light_example' # str | Image light (optional)
try:
# HTTP GET image
api_response = api_instance.get_image(image_uid, raw_type=raw_type, face=face, light=light)
pprint(api_response)
except ApiException as e:
print "Exception when calling SandboxApi->get_image: %s\n" % e
Name | Type | Description | Notes |
---|---|---|---|
image_uid | str | EnumDemoDocsImage | |
raw_type | str | Image raw type | [optional] |
face | str | Image face | [optional] |
light | str | Image light | [optional] |
list[str]
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
import time
import idcheckio_python_client
from idcheckio_python_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = idcheckio_python_client.SandboxApi()
try:
# HTTP GET images list
api_response = api_instance.get_image_list()
pprint(api_response)
except ApiException as e:
print "Exception when calling SandboxApi->get_image_list: %s\n" % e
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)
HTTP GET mrz
GET mrz
import time
import idcheckio_python_client
from idcheckio_python_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = idcheckio_python_client.SandboxApi()
mrz_uid = 'mrz_uid_example' # str | EnumDemoDocsMrz
try:
# HTTP GET mrz
api_response = api_instance.get_mrz(mrz_uid)
pprint(api_response)
except ApiException as e:
print "Exception when calling SandboxApi->get_mrz: %s\n" % e
Name | Type | Description | Notes |
---|---|---|---|
mrz_uid | str | 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
import time
import idcheckio_python_client
from idcheckio_python_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = idcheckio_python_client.SandboxApi()
try:
# HTTP GET mrz list
api_response = api_instance.get_mrz_list()
pprint(api_response)
except ApiException as e:
print "Exception when calling SandboxApi->get_mrz_list: %s\n" % e
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]