Employee/User Details

GET /device/deviceID/employee/userID

Example

/device/LT234590POHS/employee/00000001

Parameters

Name
Type
Description

deviceID

string

Device Unique Identifier / Serial Number of Device as unique identifier

userID

string

User ID in Device

Response

{
    "serial_number": "LT234590POHS", // unique Identifier
    "emp_id": "00000001", //Employee Code
    "emp_name": "00000001", //Employee Name
    "created_on": "2024-08-12 15:46:52", //First Enrollment
    "last_login": "2024-07-31 16:22:31" //Last Punch
}

GET /device/deviceID/employee/userID/dateRange

Example

/device/LT234590POHS/employee/00000001/20240831to20240831

Parameters

Name
Type
Description

deviceID

string

Device Unique Identifier / Serial Number of Device as unique identifier

userID

string

User ID in Device

dateRange

date

Format - YYYYMMDDtOYYYYMMDD (Example - 20240830to20240831) First date - Past Date From. Last date - End Date To.

Response

{
    "serial": "LT234590POHS", //Unique Identifier
    "emp_id": "00000001",  //Employee/User ID passed in API
    "verifications": [
        "2024-08-30 08:00:06",
        "2024-08-30 18:00:57",
        "2024-08-31 08:03:33",
        "2024-08-31 18:02:43"
    ] // Verifications at Biometric Terminal TimeStamps
}

Last updated

Was this helpful?