Workday Financials · Capability

Workday Financials Workday Reporting API — Custom Reports

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

Run with Naftiko Workday FinancialsCustom Reports

What You Can Do

GET
Listcustomreports — Workday Financials List custom reports
/v1/customreports
GET
Getcustomreport — Workday Financials Get a custom report
/v1/customreports/{id}
POST
Executecustomreport — Workday Financials Execute a custom report
/v1/customreports/{id}/execute

MCP Tools

workday-financials-list-custom-reports

Workday Financials List custom reports

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

Workday Financials Get a custom report

read-only idempotent
workday-financials-execute-custom-report

Workday Financials Execute a custom report

Capability Spec

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