SAP Commerce Cloud · Capability

SAP Commerce Cloud Integration API — Customers

SAP Commerce Cloud Integration API — Customers. 2 operations. Lead operation: SAP Commerce Cloud List customers. Self-contained Naftiko capability covering one Sap Commerce Cloud business surface.

Run with Naftiko Sap Commerce CloudCustomers

What You Can Do

GET
Listcustomers — SAP Commerce Cloud List customers
/v1/inboundcustomer/customers
POST
Createcustomer — SAP Commerce Cloud Create or update a customer
/v1/inboundcustomer/customers

MCP Tools

sap-commerce-cloud-list-customers

SAP Commerce Cloud List customers

read-only idempotent
sap-commerce-cloud-create-update

SAP Commerce Cloud Create or update a customer

Capability Spec

integration-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP Commerce Cloud Integration API — Customers
  description: 'SAP Commerce Cloud Integration API — Customers. 2 operations. Lead operation: SAP Commerce Cloud List customers.
    Self-contained Naftiko capability covering one Sap Commerce Cloud business surface.'
  tags:
  - Sap Commerce Cloud
  - Customers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SAP_COMMERCE_CLOUD_API_KEY: SAP_COMMERCE_CLOUD_API_KEY
capability:
  consumes:
  - type: http
    namespace: integration-customers
    baseUri: https://{tenant}.{region}.commercecloud.sap/odata2webservices
    description: SAP Commerce Cloud Integration API — Customers business capability. Self-contained, no shared references.
    resources:
    - name: InboundCustomer-Customers
      path: /InboundCustomer/Customers
      operations:
      - name: listcustomers
        method: GET
        description: SAP Commerce Cloud List customers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcustomer
        method: POST
        description: SAP Commerce Cloud Create or update a customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SAP_COMMERCE_CLOUD_API_KEY}}'
  exposes:
  - type: rest
    namespace: integration-customers-rest
    port: 8080
    description: REST adapter for SAP Commerce Cloud Integration API — Customers. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/inboundcustomer/customers
      name: inboundcustomer-customers
      description: REST surface for InboundCustomer-Customers.
      operations:
      - method: GET
        name: listcustomers
        description: SAP Commerce Cloud List customers
        call: integration-customers.listcustomers
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomer
        description: SAP Commerce Cloud Create or update a customer
        call: integration-customers.createcustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: integration-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP Commerce Cloud Integration API — Customers. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: sap-commerce-cloud-list-customers
      description: SAP Commerce Cloud List customers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: integration-customers.listcustomers
      outputParameters:
      - type: object
        mapping: $.
    - name: sap-commerce-cloud-create-update
      description: SAP Commerce Cloud Create or update a customer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: integration-customers.createcustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.