PeopleSoft · Arazzo Workflow

PeopleSoft Financial Period Review

Version 1.0.0

Pull general ledger journals for a date range, then gather AP vouchers and AR items for the same period.

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

Provider

peoplesoft

Workflows

financial-period-review
Review GL journals alongside AP vouchers and AR items for a period.
Lists GL journal entries for a business unit and date range, then pulls AP vouchers and AR items for the period close review.
3 steps inputs: authorization, businessUnit, fromDate, toDate outputs: arItems, journals, vouchers
1
listJournals
Retrieve general ledger journal entries for the business unit and date range.
2
listVouchers
Retrieve accounts payable vouchers for the period.
3
listARItems
Retrieve accounts receivable items to complete the subledger review.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: PeopleSoft Financial Period Review
  summary: Pull general ledger journals for a date range, then gather AP vouchers and AR items for the same period.
  description: >-
    A period-close review flow over the PeopleSoft Financials API. It retrieves
    general ledger journal entries for a business unit and date range, then
    gathers the accounts payable vouchers and accounts receivable items so a
    controller has the matching subledger detail for the period under 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-200.10
  - BC-200.20
  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-200.10
      capability_name: General Ledger Management
      spec: peoplesoft-general-ledger-api-openapi.yml
      confidence: 0.92
    - capability_id: BC-200.20
      capability_name: Accounts Payable Management
      spec: peoplesoft-accounts-payable-api-openapi.yml
      confidence: 0.9
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: accountsPayableApi
  url: ../openapi/peoplesoft-accounts-payable-api-openapi.yml
  type: openapi
- name: accountsReceivableApi
  url: ../openapi/peoplesoft-accounts-receivable-api-openapi.yml
  type: openapi
- name: generalLedgerApi
  url: ../openapi/peoplesoft-general-ledger-api-openapi.yml
  type: openapi
workflows:
- workflowId: financial-period-review
  summary: Review GL journals alongside AP vouchers and AR items for a period.
  description: >-
    Lists GL journal entries for a business unit and date range, then pulls AP
    vouchers and AR items for the period close review.
  inputs:
    type: object
    required:
    - authorization
    - businessUnit
    - fromDate
    - toDate
    properties:
      authorization:
        type: string
        description: HTTP Basic auth header value (e.g. "Basic dXNlcjpwYXNz").
      businessUnit:
        type: string
        description: Business unit to filter journals by (e.g. "US001").
      fromDate:
        type: string
        description: Start date filter (YYYY-MM-DD).
      toDate:
        type: string
        description: End date filter (YYYY-MM-DD).
  steps:
  - stepId: listJournals
    description: >-
      Retrieve general ledger journal entries for the business unit and date
      range.
    operationId: listJournalEntries
    parameters:
    - name: businessUnit
      in: query
      value: $inputs.businessUnit
    - name: fromDate
      in: query
      value: $inputs.fromDate
    - name: toDate
      in: query
      value: $inputs.toDate
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      journals: $response.body
  - stepId: listVouchers
    description: >-
      Retrieve accounts payable vouchers for the period.
    operationId: listVouchers
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      vouchers: $response.body
  - stepId: listARItems
    description: >-
      Retrieve accounts receivable items to complete the subledger review.
    operationId: listARItems
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      arItems: $response.body
  outputs:
    journals: $steps.listJournals.outputs.journals
    vouchers: $steps.listVouchers.outputs.vouchers
    arItems: $steps.listARItems.outputs.arItems

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-financial-period-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.