Search
This method performs a biometric verification into the database.
Body
Responses
200
OK
application/json
201
Created
400
Bad Request
*/*
401
Unauthorized
*/*
403
Forbidden
*/*
404
Not Found
*/*
409
Conflict
*/*
415
Unsupported Media Type
*/*
422
Unprocessable Entity
*/*
500
Internal Server Error
*/*
503
Service Unavailable
*/*
post
POST /gbs-spid-server/verify HTTP/1.1
Host: <ip>:8082
Content-Type: application/json
Accept: */*
Content-Length: 209
{
"data": {
"biometrics": [
{
"index": 1,
"content": "text",
"width": 1,
"height": 1,
"resolution": 1
}
],
"missingBiometrics": [
{
"index": 1,
"type": "AMPUTATED",
"reason": "text"
}
],
"userId": "text",
"operatorId": "text",
"timestamp": 1
}
}
{
"id": "text",
"message": "text",
"status": "OK"
}
This method returns the result of a verify operation, given its TGUID.
Path parameters
tguidstringRequired
Responses
200
OK
application/json
400
Bad Request
*/*
401
Unauthorized
*/*
403
Forbidden
*/*
404
Not Found
*/*
409
Conflict
*/*
415
Unsupported Media Type
*/*
422
Unprocessable Entity
*/*
500
Internal Server Error
*/*
503
Service Unavailable
*/*
get
GET /gbs-spid-server/verify/{tguid} HTTP/1.1
Host: <ip>:8082
Accept: */*
{
"id": "text",
"message": "text",
"status": "OK"
}