πŸ”#7 BiometricTest

#7.1 Upload Selfie Image :

post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Body
customerIdstring | nullableOptional
imagestring | nullableOptional
naturalImageScorenumber Β· doubleOptional
smileImageScorenumber Β· doubleOptional
recordstring | nullableOptional
Responses
200
Success
post
POST /api/v1/onboarding/BiometricTest/UploadSelfieImage HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 94

{
  "customerId": "text",
  "image": "text",
  "naturalImageScore": 1,
  "smileImageScore": 1,
  "record": "text"
}
{
  "isSuccess": true,
  "message": "text",
  "data": {
    "customerId": "text",
    "photoMatched": true,
    "photoMatchPercentage": 1,
    "detectedAge": 1,
    "detectedGender": "text"
  }
}

#7.2 Approve Biometric Test:

post
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200
Success
post
POST /api/v1/onboarding/BiometricTest/Approve HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*

No content

#7.3 Get Selfie Image :

Deprecated
get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200
Success
Responseobject
get
GET /api/v1/onboarding/BiometricTest/GetSelfieImage HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{}

#7.4 Get Document Portrait :

Deprecated
get
Authorizations
Header parameters
Accept-LanguageStringOptional
AuthorizationstringOptional

ex: Bearer

Responses
200
Success
Responseobject
get
GET /api/v1/onboarding/BiometricTest/GetDocumetPortraitImage HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{}

Last updated