GET api/customer/fingerprint/{customerId}
Get fingerprint for the given customerid.
Requires Authorisation
The api request must supply authenticated token in a custom variable in the request header. The custom variable name is configured in web.config. The default name of the custom variable is “X-Fern-Token”.
Requires Api License and User Access
The api requires license and user permission for API ID, GETapi/customer/fingerprint/{customerId}. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| customerId |
Customer unique identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Response Codes
Success Status:
- OK (200), please see resource description below.
Failed Status(es):
Resource Description
Returns the fingerprint for the given customer id.
FingerPrintDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ValueBase64 |
Property that returns the Base64 encoded format for the finger value. |
string | |
| FingerPrintId |
Fingerprint unique identifier. |
integer | |
| PersonID |
Person's id. |
integer | |
| Finger |
Finger number. |
byte | Starting from 1 for pinkie of left hand to 10 for pinkie of right hand. |
| PictureID |
Picture's unique identifier. |
integer | |
| FingerValue |
Fingerprint value |
string | Store the Fingerprint Template. |
Response Formats
application/json, text/json
{
"valueBase64": "",
"fingerPrintId": 1,
"personID": 1,
"finger": 64,
"pictureID": 1,
"fingerValue": "sample string 1"
}
application/xml, text/xml
<FingerPrintDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto"> <Finger>64</Finger> <FingerPrintId>1</FingerPrintId> <FingerValue>sample string 1</FingerValue> <PersonID>1</PersonID> <PictureID>1</PictureID> </FingerPrintDto>