MODRACXKENNETH D'SILVA

← Archive & Insights

Zoho People HRMS & Operations Management for E-Commerce

Automating warehouse fulfillment staff shifts and attendance logging with Zoho People HRMS API streamlines peak-season logistics workforce management.

By Kenneth D'SilvaReading Time: 35 min readCategory: Integrations & Systems

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: