POST api/Fingerprint/SaveFingerprint
Request Information
URI Parameters
None.
Body Parameters
FingerprintCreateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId | integer |
None. |
|
| BranchId | integer |
None. |
|
| CheckTime | date |
None. |
|
| LogType | byte |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| DeviceId | string |
None. |
|
| ConfirmationFlag | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeId": 1,
"BranchId": 2,
"CheckTime": "2025-11-11T01:10:21.445606+02:00",
"LogType": 64,
"Latitude": 5.0,
"Longitude": 6.0,
"DeviceId": "sample string 7",
"ConfirmationFlag": true
}
application/xml, text/xml
Sample:
<FingerprintCreateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EkadHR.HRAPI.Dtos"> <BranchId>2</BranchId> <CheckTime>2025-11-11T01:10:21.445606+02:00</CheckTime> <ConfirmationFlag>true</ConfirmationFlag> <DeviceId>sample string 7</DeviceId> <EmployeeId>1</EmployeeId> <Latitude>5</Latitude> <LogType>64</LogType> <Longitude>6</Longitude> </FingerprintCreateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |