Zoho People · Example Payload

Create Time Log Example

HRHRMSHuman ResourcesHRISEmployee ManagementAttendanceLeave ManagementTime TrackingPerformance ManagementOnboardingZohoOAuth 2.0

Create Time Log 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": "createTimeLog",
  "request": {
    "method": "POST",
    "url": "https://people.zoho.com/people/api/timetracker/timelogs",
    "headers": {
      "Authorization": "Zoho-oauthtoken 1000.abcdef1234567890...",
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": "jobId=88260000000099001&workDate=2026-05-22&hours=4.5&billingStatus=billable&description=Naftiko+sandbox+pipeline+work"
  },
  "response": {
    "status": 200,
    "body": {
      "response": {
        "message": "success",
        "status": 0,
        "result": [
          { "timeLogId": "88260000000099501", "workDate": "2026-05-22", "hours": 4.5, "billingStatus": "billable" }
        ]
      }
    }
  }
}