Workday Financials · Capability

Workday Financials Workday Reporting API — Reports

Workday Financials Workday Reporting API — Reports. 2 operations. Lead operation: Workday Financials List available reports. Self-contained Naftiko capability covering one Workday Financials business surface.

Run with Naftiko Workday FinancialsReports

What You Can Do

GET
Listreports — Workday Financials List available reports
/v1/reports
GET
Getreport — Workday Financials Get a report definition
/v1/reports/{id}

MCP Tools

workday-financials-list-available-reports

Workday Financials List available reports

read-only idempotent
workday-financials-get-report-definition

Workday Financials Get a report definition

read-only idempotent

Capability Spec

reporting-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Financials Workday Reporting API — Reports
  description: 'Workday Financials Workday Reporting API — Reports. 2 operations. Lead operation: Workday Financials List
    available reports. Self-contained Naftiko capability covering one Workday Financials business surface.'
  tags:
  - Workday Financials
  - Reports
  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: reporting-reports
    baseUri: https://{tenant}.workday.com/api/reporting/v38.2
    description: Workday Financials Workday Reporting API — Reports business capability. Self-contained, no shared references.
    resources:
    - name: reports
      path: /reports
      operations:
      - name: listreports
        method: GET
        description: Workday Financials List available reports
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: category
          in: query
          type: string
          description: Filter by report category
    - name: reports-id
      path: /reports/{id}
      operations:
      - name: getreport
        method: GET
        description: Workday Financials Get a report definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_FINANCIALS_API_KEY}}'
  exposes:
  - type: rest
    namespace: reporting-reports-rest
    port: 8080
    description: REST adapter for Workday Financials Workday Reporting API — Reports. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/reports
      name: reports
      description: REST surface for reports.
      operations:
      - method: GET
        name: listreports
        description: Workday Financials List available reports
        call: reporting-reports.listreports
        with:
          category: rest.category
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/reports/{id}
      name: reports-id
      description: REST surface for reports-id.
      operations:
      - method: GET
        name: getreport
        description: Workday Financials Get a report definition
        call: reporting-reports.getreport
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: reporting-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Financials Workday Reporting API — Reports. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: workday-financials-list-available-reports
      description: Workday Financials List available reports
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reporting-reports.listreports
      with:
        category: tools.category
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-financials-get-report-definition
      description: Workday Financials Get a report definition
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: reporting-reports.getreport
      outputParameters:
      - type: object
        mapping: $.