POST api/fingerprint

Create a new PendingFingerprint.

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, POSTapi/fingerprint. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.

Request Information

URI Parameters

None.

Body Parameters

PendingFingerprint data.

PendingFingerprintDto
NameDescriptionTypeAdditional information
PendingFingerprintId

Primary key of PendingFingerprint table.

integer
Finger

Finger number, starting from 1 for pinkie of left hand to 10 for pinkie of right hand.

byte
FingerValue

FingerValue. Store the Fingerprint's Template(Value).

string

Request Formats

application/json, text/json

Sample:
{
  "pendingFingerprintId": 1,
  "finger": 64,
  "fingerValue": "sample string 1"
}

application/xml, text/xml

Sample:
<PendingFingerprintDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
  <Finger>64</Finger>
  <FingerValue>sample string 1</FingerValue>
  <PendingFingerprintId>1</PendingFingerprintId>
</PendingFingerprintDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response Codes

Success Status:

  • Created (201), please see resource description below.

Failed Status(es):

Resource Description

PendingFingerprintDto
NameDescriptionTypeAdditional information
PendingFingerprintId

Primary key of PendingFingerprint table.

integer
Finger

Finger number, starting from 1 for pinkie of left hand to 10 for pinkie of right hand.

byte
FingerValue

FingerValue. Store the Fingerprint's Template(Value).

string

Response Formats

application/json, text/json

Sample:
{
  "pendingFingerprintId": 1,
  "finger": 64,
  "fingerValue": "sample string 1"
}

application/xml, text/xml

Sample:
<PendingFingerprintDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU">
  <Finger>64</Finger>
  <FingerValue>sample string 1</FingerValue>
  <PendingFingerprintId>1</PendingFingerprintId>
</PendingFingerprintDto>