SAP Commerce Cloud · Capability

SAP Commerce Cloud Integration API — Orders

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

Run with Naftiko Sap Commerce CloudOrders

What You Can Do

GET
Listorders — SAP Commerce Cloud List orders
/v1/inboundorder/orders
POST
Createorder — SAP Commerce Cloud Create or update an order
/v1/inboundorder/orders

MCP Tools

sap-commerce-cloud-list-orders

SAP Commerce Cloud List orders

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

SAP Commerce Cloud Create or update an order

Capability Spec

integration-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SAP Commerce Cloud Integration API — Orders
  description: 'SAP Commerce Cloud Integration API — Orders. 2 operations. Lead operation: SAP Commerce Cloud List orders.
    Self-contained Naftiko capability covering one Sap Commerce Cloud business surface.'
  tags:
  - Sap Commerce Cloud
  - Orders
  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-orders
    baseUri: https://{tenant}.{region}.commercecloud.sap/odata2webservices
    description: SAP Commerce Cloud Integration API — Orders business capability. Self-contained, no shared references.
    resources:
    - name: InboundOrder-Orders
      path: /InboundOrder/Orders
      operations:
      - name: listorders
        method: GET
        description: SAP Commerce Cloud List orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createorder
        method: POST
        description: SAP Commerce Cloud Create or update an order
        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-orders-rest
    port: 8080
    description: REST adapter for SAP Commerce Cloud Integration API — Orders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/inboundorder/orders
      name: inboundorder-orders
      description: REST surface for InboundOrder-Orders.
      operations:
      - method: GET
        name: listorders
        description: SAP Commerce Cloud List orders
        call: integration-orders.listorders
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorder
        description: SAP Commerce Cloud Create or update an order
        call: integration-orders.createorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: integration-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for SAP Commerce Cloud Integration API — Orders. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: sap-commerce-cloud-list-orders
      description: SAP Commerce Cloud List orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: integration-orders.listorders
      outputParameters:
      - type: object
        mapping: $.
    - name: sap-commerce-cloud-create-update
      description: SAP Commerce Cloud Create or update an order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: integration-orders.createorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.