Zoho People · Example Payload

Trigger Workflow Example

HRHRMSHuman ResourcesHRISEmployee ManagementAttendanceLeave ManagementTime TrackingPerformance ManagementOnboardingZohoOAuth 2.0

Trigger Workflow 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": "triggerWorkflow",
  "request": {
    "method": "POST",
    "url": "https://people.zoho.com/people/api/automation/triggerWorkflow",
    "headers": {
      "Authorization": "Zoho-oauthtoken 1000.abcdef1234567890...",
      "Content-Type": "application/x-www-form-urlencoded"
    },
    "body": "workflowId=WF_ONBOARD_NEW_HIRE&inputData=%7B%22employeeId%22%3A%2231415%22%7D"
  },
  "response": {
    "status": 200,
    "body": {
      "response": {
        "message": "Workflow Triggered",
        "status": 0,
        "result": [ { "workflowId": "WF_ONBOARD_NEW_HIRE", "runId": "RUN_20260523_001" } ]
      }
    }
  }
}