Workday Finance · Capability

Workday Finance Financial Management API — Accounts

Workday Finance Financial Management API — Accounts. 2 operations. Lead operation: List Financial Accounts. Self-contained Naftiko capability covering one Workday Finance business surface.

Run with Naftiko Workday FinanceAccounts

What You Can Do

GET
Listaccounts — List Financial Accounts
/v1/accounts
GET
Getaccount — Get Financial Account
/v1/accounts/{accountid}

MCP Tools

list-financial-accounts

List Financial Accounts

read-only idempotent
get-financial-account

Get Financial Account

read-only idempotent

Capability Spec

financial-management-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Finance Financial Management API — Accounts
  description: 'Workday Finance Financial Management API — Accounts. 2 operations. Lead operation: List Financial Accounts.
    Self-contained Naftiko capability covering one Workday Finance business surface.'
  tags:
  - Workday Finance
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_FINANCE_API_KEY: WORKDAY_FINANCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: financial-management-accounts
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/financial-management/v41.2/{tenant}
    description: Workday Finance Financial Management API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: accounts
      path: /accounts
      operations:
      - name: listaccounts
        method: GET
        description: List Financial Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: type
          in: query
          type: string
          description: Filter by account type
    - name: accounts-accountId
      path: /accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: Get Financial Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_FINANCE_API_KEY}}'
  exposes:
  - type: rest
    namespace: financial-management-accounts-rest
    port: 8080
    description: REST adapter for Workday Finance Financial Management API — Accounts. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/accounts
      name: accounts
      description: REST surface for accounts.
      operations:
      - method: GET
        name: listaccounts
        description: List Financial Accounts
        call: financial-management-accounts.listaccounts
        with:
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}
      name: accounts-accountid
      description: REST surface for accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: Get Financial Account
        call: financial-management-accounts.getaccount
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: financial-management-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Finance Financial Management API — Accounts. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-financial-accounts
      description: List Financial Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: financial-management-accounts.listaccounts
      with:
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: get-financial-account
      description: Get Financial Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: financial-management-accounts.getaccount
      outputParameters:
      - type: object
        mapping: $.