Workday Payroll · JSON Structure

Payroll Update Pay Run Request Structure

UpdatePayRunRequest schema from Workday Payroll API

Type: object Properties: 2
CompensationEnterpriseHuman ResourcesPayrollSaaSTax

UpdatePayRunRequest is a JSON Structure definition published by Workday Payroll, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status paymentDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-payroll/refs/heads/main/json-structure/payroll-update-pay-run-request-structure.json",
  "name": "UpdatePayRunRequest",
  "description": "UpdatePayRunRequest schema from Workday Payroll API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Draft",
        "Cancelled"
      ],
      "description": "Updated status for the pay run",
      "example": "Draft"
    },
    "paymentDate": {
      "type": "date",
      "description": "Updated payment date",
      "example": "2026-04-30"
    }
  }
}