Workday Integration · Capability

Workday Integration Workday Requests API — Requests

Workday Integration Workday Requests API — Requests. 2 operations. Lead operation: Workday Integration Retrieve a collection of requests. Self-contained Naftiko capability covering one Workday Integration business surface.

Run with Naftiko Workday IntegrationRequests

What You Can Do

GET
Getrequests — Workday Integration Retrieve a collection of requests
/v1/requests
GET
Getrequestbyid — Workday Integration Retrieve a specific Request
/v1/requests/{id}

MCP Tools

workday-integration-retrieve-collection-requests

Workday Integration Retrieve a collection of requests

read-only idempotent
workday-integration-retrieve-specific-request

Workday Integration Retrieve a specific Request

read-only idempotent

Capability Spec

requests-requests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workday Integration Workday Requests API — Requests
  description: 'Workday Integration Workday Requests API — Requests. 2 operations. Lead operation: Workday Integration Retrieve
    a collection of requests. Self-contained Naftiko capability covering one Workday Integration business surface.'
  tags:
  - Workday Integration
  - Requests
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKDAY_INTEGRATION_API_KEY: WORKDAY_INTEGRATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: requests-requests
    baseUri: https://{baseUrl}/ccx/api/requests/v1/{tenant}
    description: Workday Integration Workday Requests API — Requests business capability. Self-contained, no shared references.
    resources:
    - name: requests
      path: /requests
      operations:
      - name: getrequests
        method: GET
        description: Workday Integration Retrieve a collection of requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: requests-ID
      path: /requests/{ID}
      operations:
      - name: getrequestbyid
        method: GET
        description: Workday Integration Retrieve a specific Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKDAY_INTEGRATION_API_KEY}}'
  exposes:
  - type: rest
    namespace: requests-requests-rest
    port: 8080
    description: REST adapter for Workday Integration Workday Requests API — Requests. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/requests
      name: requests
      description: REST surface for requests.
      operations:
      - method: GET
        name: getrequests
        description: Workday Integration Retrieve a collection of requests
        call: requests-requests.getrequests
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/requests/{id}
      name: requests-id
      description: REST surface for requests-ID.
      operations:
      - method: GET
        name: getrequestbyid
        description: Workday Integration Retrieve a specific Request
        call: requests-requests.getrequestbyid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: requests-requests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workday Integration Workday Requests API — Requests. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: workday-integration-retrieve-collection-requests
      description: Workday Integration Retrieve a collection of requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: requests-requests.getrequests
      outputParameters:
      - type: object
        mapping: $.
    - name: workday-integration-retrieve-specific-request
      description: Workday Integration Retrieve a specific Request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: requests-requests.getrequestbyid
      outputParameters:
      - type: object
        mapping: $.