Zoho People Attendance API Request
// Node.js Zoho People Attendance Log Post
const axios = require('axios');
async function logAttendance(employeeId, checkInTime) {
const url = 'https://people.zoho.com/people/api/attendance';
return await axios.post(url, null, {
params: {
authtoken: process.env.ZOHO_PEOPLE_TOKEN,
empId: employeeId,
checkIn: checkInTime
}
});
}
Suggested & Related Reading
Explore related engineering guides from Kenneth D'Silva:
-
ADP HRMS & Payroll Integration for Enterprise Organizations
Comparing ADP and Zoho People enterprise payroll connectors.
-
Building Custom Intranet Employee Portals for E-Commerce Operations
Internal team dashboards.