SAP Ariba · Capability

SAP Ariba Procurement API — Suppliers

SAP Ariba Procurement API — Suppliers. 2 operations. Lead operation: List Suppliers. Self-contained Naftiko capability covering one Sap Ariba business surface.

Run with Naftiko Sap AribaSuppliers

What You Can Do

GET
Listsuppliers — List Suppliers
/v1/suppliers
GET
Getsupplier — Get a Supplier Profile
/v1/suppliers/{supplierid}

MCP Tools

list-suppliers

List Suppliers

read-only idempotent
get-supplier-profile

Get a Supplier Profile

read-only idempotent

Capability Spec

procurement-suppliers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP Ariba Procurement API — Suppliers
  description: 'SAP Ariba Procurement API — Suppliers. 2 operations. Lead operation: List Suppliers. Self-contained Naftiko
    capability covering one Sap Ariba business surface.'
  tags:
  - Sap Ariba
  - Suppliers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAP_ARIBA_API_KEY: SAP_ARIBA_API_KEY
capability:
  consumes:
  - type: http
    namespace: procurement-suppliers
    baseUri: https://openapi.ariba.com/api/procurement/v1
    description: SAP Ariba Procurement API — Suppliers business capability. Self-contained, no shared references.
    resources:
    - name: suppliers
      path: /suppliers
      operations:
      - name: listsuppliers
        method: GET
        description: List Suppliers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: filter
          in: query
          type: string
          description: OData-style filter expression
        - name: name
          in: query
          type: string
          description: Search suppliers by name (partial match supported)
        - name: qualificationStatus
          in: query
          type: string
          description: Filter by supplier qualification status
        - name: commodityCode
          in: query
          type: string
          description: Filter by UNSPSC commodity code
        - name: country
          in: query
          type: string
          description: Filter by supplier country (ISO 3166-1 alpha-2)
    - name: suppliers-supplierId
      path: /suppliers/{supplierId}
      operations:
      - name: getsupplier
        method: GET
        description: Get a Supplier Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: supplierId
          in: path
          type: string
          description: Supplier AN-ID (Ariba Network ID) or internal supplier identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.SAP_ARIBA_API_KEY}}'
  exposes:
  - type: rest
    namespace: procurement-suppliers-rest
    port: 8080
    description: REST adapter for SAP Ariba 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: List Suppliers
        call: procurement-suppliers.listsuppliers
        with:
          filter: rest.filter
          name: rest.name
          qualificationStatus: rest.qualificationStatus
          commodityCode: rest.commodityCode
          country: rest.country
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/suppliers/{supplierid}
      name: suppliers-supplierid
      description: REST surface for suppliers-supplierId.
      operations:
      - method: GET
        name: getsupplier
        description: Get a Supplier Profile
        call: procurement-suppliers.getsupplier
        with:
          supplierId: rest.supplierId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: procurement-suppliers-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP Ariba Procurement API — Suppliers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-suppliers
      description: List Suppliers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: procurement-suppliers.listsuppliers
      with:
        filter: tools.filter
        name: tools.name
        qualificationStatus: tools.qualificationStatus
        commodityCode: tools.commodityCode
        country: tools.country
      outputParameters:
      - type: object
        mapping: $.
    - name: get-supplier-profile
      description: Get a Supplier Profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: procurement-suppliers.getsupplier
      with:
        supplierId: tools.supplierId
      outputParameters:
      - type: object
        mapping: $.