Scan API
The following API allows uploading the front and back image of the document using multipart form data.
JPEG, PNG and PDF are supported. Max file size allowed is 5MB for each file. Although we recommend uploading smaller files to avoid affecting performances.
A picture size of ~500KB with a resolution of 1080x1920 can work perfectly fine. High resolution pictures don’t improve the quality of the result and are not needed. If you need to accept a bigger file you need to decrease the size at your end before calling this API.
Note: When a PDF file is used you have two choices for a two page document: you can send front and back in separate files or you can send a single PDF with both images. The system will assume that the first image is the front page of the document.
Note: Utilize this API within your backend and do not make direct calls within your frontend application.
Endpoint URL
POST <Api base url>/api/v1/scan
The <Api base url> is listed in the Customer Portal under Development > Credentials.
Headers
Content-Type
multipart/form-data
true
Authorization
Bearer <access token>
true
Query Parameters
disableExpiryValidation
(true or false)
Default value: false
If true disables document expiry validation
false
exportFaceImage
(true or false)
Default value: true
Enable or disable face detection in the document. If not needed it should be disabled
false
Payload (multipart/form-data)
The payload contains the following parts:
documentType
true
frontImage
Binary image of the front page of the document
true
backImage
Binary image of the back page of the document
False (required for a two side document)
Response Status
200
OK
400
Bad Request
401
Unauthorized
Access token missing, invalid or expired
403
Forbidden
Access token not allowed to access a certain API or functionality
413
Payload Too Large
415
Unsupported Media Type
500
Internal Server Error
Unexpected error
Response Body for Status Code 400
error
INVALID_INPUT
Missing required input or invalid format
SCAN_DOCUMENT_NOT_RECOGNIZED
Document type not recognized. Scanning failed or document type doesn’t match the provided document
SCAN_DOCUMENT_EXPIRED
Document is expired
SCAN_DOCUMENT_FRONT_BACK_MISMATCH
Front and back pages don't belong to the same document. Not supported for every document type
message
Description of the error
Response Body for Status Code 200 (application/json)
The API returns a JSON object with the following structure:
Sample Request using curl
Please note that “https://example.com” needs to be replaced with the api server base url.
#Sample Response Body
Below an example of UAE_ID scan process response body:
Last updated