SAP Integration Suite · Capability

SAP API Management API — API Products

SAP API Management API — API Products. 3 operations. Lead operation: List API Products. Self-contained Naftiko capability covering one Sap Integration Suite business surface.

Run with Naftiko Sap Integration SuiteAPI Products

What You Can Do

GET
Listapiproducts — List API Products
/v1/management/apiproducts
POST
Createapiproduct — Create API Product
/v1/management/apiproducts
GET
Getapiproduct — Get API Product
/v1/management/apiproducts-name

MCP Tools

list-api-products

List API Products

read-only idempotent
create-api-product

Create API Product

get-api-product

Get API Product

read-only idempotent

Capability Spec

api-management-api-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP API Management API — API Products
  description: 'SAP API Management API — API Products. 3 operations. Lead operation: List API Products. Self-contained Naftiko
    capability covering one Sap Integration Suite business surface.'
  tags:
  - Sap Integration Suite
  - API Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAP_INTEGRATION_SUITE_API_KEY: SAP_INTEGRATION_SUITE_API_KEY
capability:
  consumes:
  - type: http
    namespace: api-management-api-products
    baseUri: https://{api-portal-host}/apiportal/api/1.0
    description: SAP API Management API — API Products business capability. Self-contained, no shared references.
    resources:
    - name: Management-APIProducts
      path: /Management/APIProducts
      operations:
      - name: listapiproducts
        method: GET
        description: List API Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: $top
          in: query
          type: integer
        - name: $skip
          in: query
          type: integer
        - name: $filter
          in: query
          type: string
      - name: createapiproduct
        method: POST
        description: Create API Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: Management-APIProducts('{name}')
      path: /Management/APIProducts('{name}')
      operations:
      - name: getapiproduct
        method: GET
        description: Get API Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: API product name
          required: true
    authentication:
      type: bearer
      token: '{{env.SAP_INTEGRATION_SUITE_API_KEY}}'
  exposes:
  - type: rest
    namespace: api-management-api-products-rest
    port: 8080
    description: REST adapter for SAP API Management API — API Products. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/management/apiproducts
      name: management-apiproducts
      description: REST surface for Management-APIProducts.
      operations:
      - method: GET
        name: listapiproducts
        description: List API Products
        call: api-management-api-products.listapiproducts
        with:
          $top: rest.$top
          $skip: rest.$skip
          $filter: rest.$filter
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapiproduct
        description: Create API Product
        call: api-management-api-products.createapiproduct
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/management/apiproducts-name
      name: management-apiproducts-name
      description: REST surface for Management-APIProducts('{name}').
      operations:
      - method: GET
        name: getapiproduct
        description: Get API Product
        call: api-management-api-products.getapiproduct
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: api-management-api-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP API Management API — API Products. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-api-products
      description: List API Products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-api-products.listapiproducts
      with:
        $top: tools.$top
        $skip: tools.$skip
        $filter: tools.$filter
      outputParameters:
      - type: object
        mapping: $.
    - name: create-api-product
      description: Create API Product
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: api-management-api-products.createapiproduct
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-api-product
      description: Get API Product
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: api-management-api-products.getapiproduct
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.