Zoho People · Example Payload

Check In Out Example

HRHRMSHuman ResourcesHRISEmployee ManagementAttendanceLeave ManagementTime TrackingPerformance ManagementOnboardingZohoOAuth 2.0

Check In Out Example is an example object payload from Zoho People, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdrequestresponse

Example Payload

Raw ↑
{
  "operationId": "checkInOut",
  "request": {
    "method": "POST",
    "url": "https://people.zoho.com/people/api/attendance",
    "headers": {
      "Authorization": "Zoho-oauthtoken 1000.abcdef1234567890...",
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": "checkIn=2026-05-23+09%3A00%3A00&checkOut=2026-05-23+18%3A00%3A00&empId=31415"
  },
  "response": {
    "status": 200,
    "body": {
      "response": {
        "message": "success",
        "status": 0,
        "result": [
          {
            "empId": "31415",
            "date": "2026-05-23",
            "firstIn": "2026-05-23 09:00:00",
            "lastOut": "2026-05-23 18:00:00",
            "totalHours": "09:00"
          }
        ]
      }
    }
  }
}