POST BiometricsVerification
Request Information
URI Parameters
None.
Body Parameters
BiometricsVerificationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Identifier | string |
None. |
|
| Biometrics | Collection of Biometrics |
None. |
|
| CIODIdentifiers | Collection of string |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Identifier": "sample string 1",
"Biometrics": [
{
"ISOImageTypeID": 1,
"Data": "sample string 2"
},
{
"ISOImageTypeID": 1,
"Data": "sample string 2"
}
],
"CIODIdentifiers": [
"sample string 1",
"sample string 2"
],
"Token": "sample string 2"
}
application/xml, text/xml
Sample:
<BiometricsVerificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models">
<Token>sample string 2</Token>
<Biometrics>
<Biometrics>
<Data>sample string 2</Data>
<ISOImageTypeID>1</ISOImageTypeID>
</Biometrics>
<Biometrics>
<Data>sample string 2</Data>
<ISOImageTypeID>1</ISOImageTypeID>
</Biometrics>
</Biometrics>
<CIODIdentifiers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</CIODIdentifiers>
<Identifier>sample string 1</Identifier>
</BiometricsVerificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BiometricsVerificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| MatchFlag | boolean |
None. |
|
| VerifiedApplicants | Collection of VerifiedApplicant |
None. |
|
| ASReference | integer |
None. |
|
| Response | Response |
None. |
Response Formats
application/json, text/json
Sample:
{
"MatchFlag": true,
"VerifiedApplicants": [
{
"Identifier": "sample string 1",
"Score": 2,
"IsMatch": true,
"Matches": [
{
"ApplicantIndex": 1,
"CandidateIndex": 2,
"Score": 3
},
{
"ApplicantIndex": 1,
"CandidateIndex": 2,
"Score": 3
}
]
},
{
"Identifier": "sample string 1",
"Score": 2,
"IsMatch": true,
"Matches": [
{
"ApplicantIndex": 1,
"CandidateIndex": 2,
"Score": 3
},
{
"ApplicantIndex": 1,
"CandidateIndex": 2,
"Score": 3
}
]
}
],
"ASReference": 2,
"Response": {
"ResponseCode": 1,
"ResponseMessage": "sample string 2"
}
}
application/xml, text/xml
Sample:
<BiometricsVerificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AfiswitchCIOD.Models">
<Response>
<ResponseCode>1</ResponseCode>
<ResponseMessage>sample string 2</ResponseMessage>
</Response>
<ASReference>2</ASReference>
<MatchFlag>true</MatchFlag>
<VerifiedApplicants>
<VerifiedApplicant>
<Identifier>sample string 1</Identifier>
<IsMatch>true</IsMatch>
<Matches>
<MatchData>
<ApplicantIndex>1</ApplicantIndex>
<CandidateIndex>2</CandidateIndex>
<Score>3</Score>
</MatchData>
<MatchData>
<ApplicantIndex>1</ApplicantIndex>
<CandidateIndex>2</CandidateIndex>
<Score>3</Score>
</MatchData>
</Matches>
<Score>2</Score>
</VerifiedApplicant>
<VerifiedApplicant>
<Identifier>sample string 1</Identifier>
<IsMatch>true</IsMatch>
<Matches>
<MatchData>
<ApplicantIndex>1</ApplicantIndex>
<CandidateIndex>2</CandidateIndex>
<Score>3</Score>
</MatchData>
<MatchData>
<ApplicantIndex>1</ApplicantIndex>
<CandidateIndex>2</CandidateIndex>
<Score>3</Score>
</MatchData>
</Matches>
<Score>2</Score>
</VerifiedApplicant>
</VerifiedApplicants>
</BiometricsVerificationResponse>