PeopleSoft · Arazzo Workflow

PeopleSoft Employee Payroll and Benefits Review

Version 1.0.0

Find an employee in a department, pull their full record, then review payroll runs and benefit enrollments.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Campus SolutionsCRMEnterprise SoftwareERPFinancial ManagementHCMSupply Chain ManagementArazzoWorkflows

Provider

peoplesoft

Workflows

employee-payroll-review
Resolve an employee then review their payroll runs and benefit enrollments.
Lists active employees in a department, gets the first employee's record, and gathers payroll runs and benefit enrollments for review.
4 steps inputs: department, status outputs: employee, employeeId, enrollments, payrollRuns
1
findEmployees
List employees in the supplied department filtered to the requested employment status.
2
getEmployeeRecord
Retrieve the full personal-data record for the first matched employee.
3
listPayroll
Retrieve the payroll run history and status for the review period.
4
listBenefits
Retrieve benefit enrollment records to round out the compensation review.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: PeopleSoft Employee Payroll and Benefits Review
  summary: Find an employee in a department, pull their full record, then review payroll runs and benefit enrollments.
  description: >-
    A workforce administration flow over the PeopleSoft HCM API. It lists
    employees filtered by department and employment status, selects the first
    match, retrieves that employee's full personal-data record, and then pulls
    the payroll run history and benefit enrollment records that an HR analyst
    needs for a periodic compensation and benefits review. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-300.30
  - BC-300.70
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-300.30
      capability_name: Compensation & Benefits Management
      spec: peoplesoft-benefits-api-openapi.yml
      confidence: 0.9
    - capability_id: BC-300.70
      capability_name: HR Operations Management
      spec: peoplesoft-payroll-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: benefitsApi
  url: ../openapi/peoplesoft-benefits-api-openapi.yml
  type: openapi
- name: employeesApi
  url: ../openapi/peoplesoft-employees-api-openapi.yml
  type: openapi
- name: payrollApi
  url: ../openapi/peoplesoft-payroll-api-openapi.yml
  type: openapi
workflows:
- workflowId: employee-payroll-review
  summary: Resolve an employee then review their payroll runs and benefit enrollments.
  description: >-
    Lists active employees in a department, gets the first employee's record,
    and gathers payroll runs and benefit enrollments for review.
  inputs:
    type: object
    required:
    - department
    properties:
      department:
        type: string
        description: Department code to filter employees by (e.g. "10200").
      status:
        type: string
        description: Employment status filter (active, inactive, terminated, leave).
        default: active
  steps:
  - stepId: findEmployees
    description: >-
      List employees in the supplied department filtered to the requested
      employment status.
    operationId: listEmployees
    parameters:
    - name: department
      in: query
      value: $inputs.department
    - name: status
      in: query
      value: $inputs.status
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      employees: $response.body#/employees
      firstEmployeeId: $response.body#/employees/0/EMPLID
  - stepId: getEmployeeRecord
    description: >-
      Retrieve the full personal-data record for the first matched employee.
    operationId: getEmployee
    parameters:
    - name: employeeId
      in: path
      value: $steps.findEmployees.outputs.firstEmployeeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      employee: $response.body
  - stepId: listPayroll
    description: >-
      Retrieve the payroll run history and status for the review period.
    operationId: listPayrollRuns
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      payrollRuns: $response.body
  - stepId: listBenefits
    description: >-
      Retrieve benefit enrollment records to round out the compensation review.
    operationId: listBenefitEnrollments
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      enrollments: $response.body
  outputs:
    employeeId: $steps.findEmployees.outputs.firstEmployeeId
    employee: $steps.getEmployeeRecord.outputs.employee
    payrollRuns: $steps.listPayroll.outputs.payrollRuns
    enrollments: $steps.listBenefits.outputs.enrollments

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/peoplesoft-employee-payroll-review-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.