Workday Finance · Arazzo Workflow

Workday Finance Audit Open Period Journals

Version 1.0.0

Find an open financial period, then list and inspect its journal entries.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AccountingCloudEnterpriseERPFinanceFinancial ManagementArazzoWorkflows

Provider

workday-finance

Workflows

audit-open-period-journals
Resolve a period then list and inspect the journal entries posted to it.
Lists financial periods for the fiscal year, lists journal entries for the supplied period, and reads the first journal entry back for review.
3 steps inputs: fiscalYear, period, token outputs: inspectedEntryId, journalTotal, periodTotal
1
listFinancialPeriods
List the financial periods for the fiscal year and branch on whether any periods were returned.
2
listJournalEntries
List the journal entries posted to the supplied period and take the first entry for inspection.
3
getJournalEntry
Read the first journal entry back so the auditor can inspect its lines and posting status.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workday Finance Audit Open Period Journals
  summary: Find an open financial period, then list and inspect its journal entries.
  description: >-
    A period-close review helper. The workflow lists financial periods for a
    fiscal year, branches on whether any were returned, lists the journal
    entries posted to the chosen period, and reads the first entry back for
    inspection. Each step spells out its request inline so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: financialPeriodsApi
  url: ../openapi/workday-finance-financial-periods-api-openapi.yml
  type: openapi
- name: journalEntriesApi
  url: ../openapi/workday-finance-journal-entries-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-open-period-journals
  summary: Resolve a period then list and inspect the journal entries posted to it.
  description: >-
    Lists financial periods for the fiscal year, lists journal entries for the
    supplied period, and reads the first journal entry back for review.
  inputs:
    type: object
    required:
    - token
    - fiscalYear
    - period
    properties:
      token:
        type: string
        description: OAuth 2.0 bearer access token for the Workday tenant.
      fiscalYear:
        type: string
        description: The fiscal year used to filter the financial periods list.
      period:
        type: string
        description: The accounting period to list journal entries for.
  steps:
  - stepId: listFinancialPeriods
    description: >-
      List the financial periods for the fiscal year and branch on whether any
      periods were returned.
    operationId: listFinancialPeriods
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: fiscalYear
      in: query
      value: $inputs.fiscalYear
    - name: limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      periods: $response.body#/data
      total: $response.body#/total
    onSuccess:
    - name: periodsFound
      type: goto
      stepId: listJournalEntries
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: periodsMissing
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: listJournalEntries
    description: >-
      List the journal entries posted to the supplied period and take the first
      entry for inspection.
    operationId: listJournalEntries
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: period
      in: query
      value: $inputs.period
    - name: limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      entries: $response.body#/data
      firstEntryId: $response.body#/data/0/id
      total: $response.body#/total
  - stepId: getJournalEntry
    description: >-
      Read the first journal entry back so the auditor can inspect its lines and
      posting status.
    operationId: getJournalEntry
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.token
    - name: journalEntryId
      in: path
      value: $steps.listJournalEntries.outputs.firstEntryId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      journalEntryId: $response.body#/id
      status: $response.body#/status
      lines: $response.body#/lines
  outputs:
    periodTotal: $steps.listFinancialPeriods.outputs.total
    journalTotal: $steps.listJournalEntries.outputs.total
    inspectedEntryId: $steps.getJournalEntry.outputs.journalEntryId

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/workday-finance-audit-open-period-journals-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.