0% found this document useful (0 votes)
1 views2 pages

3rd Party API Basic

The document outlines two API endpoints for retrieving employee information and attendance records. The first endpoint returns a list of employees with their IDs and names, while the second retrieves attendance records for a specific date, including check-in times. Both requests require a company ID and an SDK token for authentication.

Uploaded by

kp8613765
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views2 pages

3rd Party API Basic

The document outlines two API endpoints for retrieving employee information and attendance records. The first endpoint returns a list of employees with their IDs and names, while the second retrieves attendance records for a specific date, including check-in times. Both requests require a company ID and an SDK token for authentication.

Uploaded by

kp8613765
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Employee List

[Link]

Request : POST
{
"cId": 30432,
"sdk": "E4xotT4LeIXuhDRMvaiEWNuXxWo9XhepoHic4lNCOKvkRN38ku"
}

Response :

{
"success": false,
"message": "DATAFOUND",
"code": "1",
"data": [
{
"payId": "",
"empId": "78",
"name": "Shubham pawar"
},
{
"payId": "43",
"empId": "43",
"name": "Monika saini"
}
]
}

Employee Records
[Link]

Request : POST

{
"cId": 30432,
"sdk": "E4xotT4LeIXuhDRMvaiEWNuXxWo9XhepoHic4lNCOKvkRN38ku",
"date": "2025-12-26"
}
Note: Data Format : “YYYY-MM-DD”

Response
{
"success": true,
"message": "DATAFOUND",
"code": "1",
"data": [
{
"employeeId": "78",
"checkTime": "2025-12-26T09:00:00",
"serialNo": "N/A",
"gpsData": "N/A"
},
{
"employeeId": "78",
"checkTime": "2025-12-26T12:00:00",
"serialNo": "N/A",
"gpsData": "N/A"
}
]
}

You might also like