Search

verify

post

This method performs a biometric verification into the database.

Body
Responses
200

OK

application/json
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"
}

getSearchResult

get

This method returns the result of a verify operation, given its TGUID.

Path parameters
tguidstringRequired
Responses
200

OK

application/json
get
GET /gbs-spid-server/verify/{tguid} HTTP/1.1
Host: <ip>:8082
Accept: */*
{
  "id": "text",
  "message": "text",
  "status": "OK"
}