Workday Business Processes · Example Payload

Workday Business Processes Business Process Definition Example

Business process for hiring new employees including manager approval and background check

Workday Business Processes Business Process Definition Example is an example object payload from Workday Business Processes, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

idnametypestatusversiondescriptionsteps

Example Payload

Raw ↑
{
  "id": "BPD-HIRE-001",
  "name": "Hire Employee",
  "type": "HireEmployee",
  "status": "ACTIVE",
  "version": 2,
  "description": "Business process for hiring new employees including manager approval and background check",
  "steps": [
    {
      "stepId": "STEP-001",
      "stepType": "APPROVAL",
      "assignedGroup": "HR Managers",
      "order": 1
    },
    {
      "stepId": "STEP-002",
      "stepType": "ACTION",
      "assignedGroup": "Background Check Team",
      "order": 2
    },
    {
      "stepId": "STEP-003",
      "stepType": "NOTIFICATION",
      "assignedGroup": "IT Provisioning",
      "order": 3
    }
  ]
}