Paychex · Example Payload

Paychex Workers Listcompanyworkers Example

BenefitsHCMHRPaychex FlexPayrollTime and AttendanceWorkforceFortune 1000

Paychex Workers Listcompanyworkers Example is an example object payload from Paychex, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

metadatacontent

Example Payload

Raw ↑
{
  "metadata": {
    "contentItemCount": 2,
    "totalContentItemCount": 2,
    "offset": 0,
    "limit": 25
  },
  "content": [
    {
      "workerId": "W-100001",
      "companyId": "12A1B2C3D4E5F6",
      "workerType": "EMPLOYEE",
      "workerStatus": "ACTIVE",
      "name": {
        "givenName": "Jane",
        "familyName": "Doe",
        "preferredName": "Janie"
      },
      "contact": {
        "emailAddress": "jane.doe@example.com",
        "phoneNumber": "+1-585-555-0142",
        "address": {
          "streetLineOne": "1175 John St",
          "city": "West Henrietta",
          "stateCode": "NY",
          "postalCode": "14586",
          "countryCode": "US"
        }
      },
      "employment": {
        "hireDate": "2023-03-15",
        "jobTitle": "Shift Supervisor",
        "departmentCode": "FOH",
        "payFrequency": "BIWEEKLY",
        "payType": "HOURLY",
        "baseRate": 22.5
      }
    },
    {
      "workerId": "W-100002",
      "companyId": "12A1B2C3D4E5F6",
      "workerType": "CONTRACTOR",
      "workerStatus": "ACTIVE",
      "name": {
        "givenName": "Marcus",
        "familyName": "Lin"
      },
      "employment": {
        "hireDate": "2025-09-01",
        "jobTitle": "Catering Photographer",
        "payFrequency": "MONTHLY",
        "payType": "HOURLY",
        "baseRate": 75.0
      }
    }
  ]
}