Workday Financials · Capability

Workday Financials Workday Procurement API — Suppliers

Workday Financials Workday Procurement API — Suppliers. 2 operations. Lead operation: Workday Financials List suppliers. Self-contained Naftiko capability covering one Workday Financials business surface.

Run with Naftiko Workday FinancialsSuppliers

What You Can Do

GET
Listsuppliers — Workday Financials List suppliers
/v1/suppliers
GET
Getsupplier — Workday Financials Get a supplier
/v1/suppliers/{id}

MCP Tools

workday-financials-list-suppliers

Workday Financials List suppliers

read-only idempotent
workday-financials-get-supplier

Workday Financials Get a supplier

read-only idempotent

Capability Spec

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