Workday · Capability

Workday Prism Analytics API — Tables

Workday Prism Analytics API — Tables. 2 operations. Lead operation: Get Tables. Self-contained Naftiko capability covering one Workday business surface.

Run with Naftiko WorkdayTables

What You Can Do

GET
Gettables — Get Tables
/v1/tables
GET
Gettablebyid — Get Table by Id
/v1/tables/{id}

MCP Tools

get-tables

Get Tables

read-only idempotent
get-table-id

Get Table by Id

read-only idempotent

Capability Spec

prismAnalytics-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Prism Analytics API — Tables
  description: 'Workday Prism Analytics API — Tables. 2 operations. Lead operation: Get Tables. Self-contained Naftiko capability
    covering one Workday business surface.'
  tags:
  - Workday
  - Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_API_KEY: WORKDAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: prismAnalytics-tables
    baseUri: https://wd2-impl-services1.workday.com/ccx/api/prismAnalytics/v3/{tenant}
    description: Workday Prism Analytics API — Tables business capability. Self-contained, no shared references.
    resources:
    - name: tables
      path: /tables
      operations:
      - name: gettables
        method: GET
        description: Get Tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter tables by name.
    - name: tables-ID
      path: /tables/{ID}
      operations:
      - name: gettablebyid
        method: GET
        description: Get Table by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_API_KEY}}'
  exposes:
  - type: rest
    namespace: prismAnalytics-tables-rest
    port: 8080
    description: REST adapter for Workday Prism Analytics API — Tables. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/tables
      name: tables
      description: REST surface for tables.
      operations:
      - method: GET
        name: gettables
        description: Get Tables
        call: prismAnalytics-tables.gettables
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/tables/{id}
      name: tables-id
      description: REST surface for tables-ID.
      operations:
      - method: GET
        name: gettablebyid
        description: Get Table by Id
        call: prismAnalytics-tables.gettablebyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: prismAnalytics-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Prism Analytics API — Tables. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-tables
      description: Get Tables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: prismAnalytics-tables.gettables
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: get-table-id
      description: Get Table by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: prismAnalytics-tables.gettablebyid
      outputParameters:
      - type: object
        mapping: $.