Oracle E-Business Suite · Arazzo Workflow

Oracle EBS Payroll Run Review

Version 1.0.0

Resolve a payroll definition, read its run results, and confirm an employee's benefit enrollment.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Business ApplicationsE-Business SuiteEnterpriseERPOracleArazzoWorkflows

Provider

oracle-e-business-suite

Workflows

review-payroll-run
Resolve a payroll, read its runs, and check employee benefit enrollment.
Resolves a payroll definition by name within a business group, reads its payroll run results, and reads an employee's benefit enrollments as of an effective date.
3 steps inputs: businessGroupId, effectiveDate, payrollName, personId outputs: enrollmentResultId, payrollActionId, payrollId
1
resolvePayroll
Resolve the payroll definition by name within the business group, returning the first match.
2
readPayrollRuns
Read payroll run/action results for the resolved payroll as of the effective date.
3
readBenefits
Read the employee's benefit enrollments as of the effective date to reconcile deductions against the payroll run.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle EBS Payroll Run Review
  summary: Resolve a payroll definition, read its run results, and confirm an employee's benefit enrollment.
  description: >-
    An Oracle Payroll review flow. The workflow resolves a payroll definition by
    name, reads its run/action results, and reads an employee's benefit
    enrollments so payroll and benefits can be reconciled for a pay period. Each
    step inlines its request so the review chain can be executed without opening
    the OpenAPI source.
  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: oracle-e-business-suite-benefits-api-openapi.yml
      confidence: 0.85
    - capability_id: BC-300.70
      capability_name: HR Operations Management
      spec: oracle-e-business-suite-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/oracle-e-business-suite-benefits-api-openapi.yml
  type: openapi
- name: payrollApi
  url: ../openapi/oracle-e-business-suite-payroll-api-openapi.yml
  type: openapi
workflows:
- workflowId: review-payroll-run
  summary: Resolve a payroll, read its runs, and check employee benefit enrollment.
  description: >-
    Resolves a payroll definition by name within a business group, reads its
    payroll run results, and reads an employee's benefit enrollments as of an
    effective date.
  inputs:
    type: object
    required:
    - payrollName
    - businessGroupId
    - personId
    - effectiveDate
    properties:
      payrollName:
        type: string
        description: Payroll definition name to resolve.
      businessGroupId:
        type: integer
        description: Business group identifier.
      personId:
        type: integer
        description: Employee person identifier to check benefits for.
      effectiveDate:
        type: string
        description: Effective date in YYYY-MM-DD format.
  steps:
  - stepId: resolvePayroll
    description: >-
      Resolve the payroll definition by name within the business group,
      returning the first match.
    operationId: getPayrolls
    parameters:
    - name: payrollName
      in: query
      value: $inputs.payrollName
    - name: businessGroupId
      in: query
      value: $inputs.businessGroupId
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      payrollId: $response.body#/items/0/payrollId
  - stepId: readPayrollRuns
    description: >-
      Read payroll run/action results for the resolved payroll as of the
      effective date.
    operationId: getPayrollRuns
    parameters:
    - name: payrollId
      in: query
      value: $steps.resolvePayroll.outputs.payrollId
    - name: effectiveDate
      in: query
      value: $inputs.effectiveDate
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      payrollActionId: $response.body#/items/0/payrollActionId
      actionStatus: $response.body#/items/0/actionStatus
  - stepId: readBenefits
    description: >-
      Read the employee's benefit enrollments as of the effective date to
      reconcile deductions against the payroll run.
    operationId: getBenefitEnrollments
    parameters:
    - name: personId
      in: query
      value: $inputs.personId
    - name: effectiveDate
      in: query
      value: $inputs.effectiveDate
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      enrollmentResultId: $response.body#/items/0/enrollmentResultId
      planName: $response.body#/items/0/planName
  outputs:
    payrollId: $steps.resolvePayroll.outputs.payrollId
    payrollActionId: $steps.readPayrollRuns.outputs.payrollActionId
    enrollmentResultId: $steps.readBenefits.outputs.enrollmentResultId

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/oracle-e-business-suite-payroll-run-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.