Workday · Capability

Workday Prism Analytics API — File Containers

Workday Prism Analytics API — File Containers. 2 operations. Lead operation: Create File Container. Self-contained Naftiko capability covering one Workday business surface.

Run with Naftiko WorkdayFile Containers

What You Can Do

POST
Createfilecontainer — Create File Container
/v1/filecontainers
GET
Getfilecontainerbyid — Get File Container by Id
/v1/filecontainers/{id}

MCP Tools

create-file-container

Create File Container

get-file-container-id

Get File Container by Id

read-only idempotent

Capability Spec

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