Workday Financials · Capability

Workday Financials Workday Financial Management API — Journal Entries

Workday Financials Workday Financial Management API — Journal Entries. 3 operations. Lead operation: Workday Financials List journal entries. Self-contained Naftiko capability covering one Workday Financials business surface.

Run with Naftiko Workday FinancialsJournal Entries

What You Can Do

GET
Listjournalentries — Workday Financials List journal entries
/v1/journalentries
POST
Createjournalentry — Workday Financials Create a journal entry
/v1/journalentries
GET
Getjournalentry — Workday Financials Get a journal entry
/v1/journalentries/{id}

MCP Tools

workday-financials-list-journal-entries

Workday Financials List journal entries

read-only idempotent
workday-financials-create-journal-entry

Workday Financials Create a journal entry

workday-financials-get-journal-entry

Workday Financials Get a journal entry

read-only idempotent

Capability Spec

financial-management-journal-entries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Financials Workday Financial Management API — Journal Entries
  description: 'Workday Financials Workday Financial Management API — Journal Entries. 3 operations. Lead operation: Workday
    Financials List journal entries. Self-contained Naftiko capability covering one Workday Financials business surface.'
  tags:
  - Workday Financials
  - Journal Entries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_FINANCIALS_API_KEY: WORKDAY_FINANCIALS_API_KEY
capability:
  consumes:
  - type: http
    namespace: financial-management-journal-entries
    baseUri: https://{tenant}.workday.com/api/financialManagement/v38.2
    description: Workday Financials Workday Financial Management API — Journal Entries business capability. Self-contained,
      no shared references.
    resources:
    - name: journalEntries
      path: /journalEntries
      operations:
      - name: listjournalentries
        method: GET
        description: Workday Financials List journal entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fromDate
          in: query
          type: string
          description: Filter entries from this date (inclusive)
        - name: toDate
          in: query
          type: string
          description: Filter entries to this date (inclusive)
      - name: createjournalentry
        method: POST
        description: Workday Financials Create a journal entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: journalEntries-id
      path: /journalEntries/{id}
      operations:
      - name: getjournalentry
        method: GET
        description: Workday Financials Get a journal entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_FINANCIALS_API_KEY}}'
  exposes:
  - type: rest
    namespace: financial-management-journal-entries-rest
    port: 8080
    description: REST adapter for Workday Financials Workday Financial Management API — Journal Entries. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/journalentries
      name: journalentries
      description: REST surface for journalEntries.
      operations:
      - method: GET
        name: listjournalentries
        description: Workday Financials List journal entries
        call: financial-management-journal-entries.listjournalentries
        with:
          fromDate: rest.fromDate
          toDate: rest.toDate
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createjournalentry
        description: Workday Financials Create a journal entry
        call: financial-management-journal-entries.createjournalentry
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/journalentries/{id}
      name: journalentries-id
      description: REST surface for journalEntries-id.
      operations:
      - method: GET
        name: getjournalentry
        description: Workday Financials Get a journal entry
        call: financial-management-journal-entries.getjournalentry
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: financial-management-journal-entries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Financials Workday Financial Management API — Journal Entries. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: workday-financials-list-journal-entries
      description: Workday Financials List journal entries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: financial-management-journal-entries.listjournalentries
      with:
        fromDate: tools.fromDate
        toDate: tools.toDate
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-financials-create-journal-entry
      description: Workday Financials Create a journal entry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: financial-management-journal-entries.createjournalentry
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-financials-get-journal-entry
      description: Workday Financials Get a journal entry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: financial-management-journal-entries.getjournalentry
      outputParameters:
      - type: object
        mapping: $.