TD SYNNEX · Capability

TD SYNNEX StreamOne Ion Partner API — Orders

TD SYNNEX StreamOne Ion Partner API — Orders. 6 operations. Lead operation: List Customer Orders. Self-contained Naftiko capability covering one Td Synnex business surface.

Run with Naftiko Td SynnexOrders

What You Can Do

GET
Listcustomerorders — List Customer Orders
/v1/v3/accounts/{accountid}/customers/{customerid}/orders
GET
Listorders — List Orders
/v1/v3/accounts/{accountid}/orders
POST
Createorder — Create Order
/v1/v3/accounts/{accountid}/orders
GET
Getorder — Get Order
/v1/v3/accounts/{accountid}/orders/{orderid}
PUT
Updateorder — Update Order
/v1/v3/accounts/{accountid}/orders/{orderid}
DELETE
Cancelorder — Cancel Order
/v1/v3/accounts/{accountid}/orders/{orderid}

MCP Tools

list-customer-orders

List Customer Orders

read-only idempotent
list-orders

List Orders

read-only idempotent
create-order

Create Order

get-order

Get Order

read-only idempotent
update-order

Update Order

idempotent
cancel-order

Cancel Order

idempotent

Capability Spec

streamone-ion-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TD SYNNEX StreamOne Ion Partner API — Orders
  description: 'TD SYNNEX StreamOne Ion Partner API — Orders. 6 operations. Lead operation: List Customer Orders. Self-contained
    Naftiko capability covering one Td Synnex business surface.'
  tags:
  - Td Synnex
  - Orders
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TD_SYNNEX_API_KEY: TD_SYNNEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: streamone-ion-orders
    baseUri: https://ion.tdsynnex.com
    description: TD SYNNEX StreamOne Ion Partner API — Orders business capability. Self-contained, no shared references.
    resources:
    - name: v3-accounts-accountId-customers-customerId-orders
      path: /v3/accounts/{accountId}/customers/{customerId}/orders
      operations:
      - name: listcustomerorders
        method: GET
        description: List Customer Orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-accounts-accountId-orders
      path: /v3/accounts/{accountId}/orders
      operations:
      - name: listorders
        method: GET
        description: List Orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by order status
        - name: page
          in: query
          type: integer
        - name: pageSize
          in: query
          type: integer
      - name: createorder
        method: POST
        description: Create Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v3-accounts-accountId-orders-orderId
      path: /v3/accounts/{accountId}/orders/{orderId}
      operations:
      - name: getorder
        method: GET
        description: Get Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateorder
        method: PUT
        description: Update Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: cancelorder
        method: DELETE
        description: Cancel Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TD_SYNNEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: streamone-ion-orders-rest
    port: 8080
    description: REST adapter for TD SYNNEX StreamOne Ion Partner API — Orders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v3/accounts/{accountid}/customers/{customerid}/orders
      name: v3-accounts-accountid-customers-customerid-orders
      description: REST surface for v3-accounts-accountId-customers-customerId-orders.
      operations:
      - method: GET
        name: listcustomerorders
        description: List Customer Orders
        call: streamone-ion-orders.listcustomerorders
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/accounts/{accountid}/orders
      name: v3-accounts-accountid-orders
      description: REST surface for v3-accounts-accountId-orders.
      operations:
      - method: GET
        name: listorders
        description: List Orders
        call: streamone-ion-orders.listorders
        with:
          status: rest.status
          page: rest.page
          pageSize: rest.pageSize
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createorder
        description: Create Order
        call: streamone-ion-orders.createorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/accounts/{accountid}/orders/{orderid}
      name: v3-accounts-accountid-orders-orderid
      description: REST surface for v3-accounts-accountId-orders-orderId.
      operations:
      - method: GET
        name: getorder
        description: Get Order
        call: streamone-ion-orders.getorder
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateorder
        description: Update Order
        call: streamone-ion-orders.updateorder
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: cancelorder
        description: Cancel Order
        call: streamone-ion-orders.cancelorder
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streamone-ion-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for TD SYNNEX StreamOne Ion Partner API — Orders. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-customer-orders
      description: List Customer Orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-orders.listcustomerorders
      outputParameters:
      - type: object
        mapping: $.
    - name: list-orders
      description: List Orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-orders.listorders
      with:
        status: tools.status
        page: tools.page
        pageSize: tools.pageSize
      outputParameters:
      - type: object
        mapping: $.
    - name: create-order
      description: Create Order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: streamone-ion-orders.createorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-order
      description: Get Order
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-orders.getorder
      outputParameters:
      - type: object
        mapping: $.
    - name: update-order
      description: Update Order
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: streamone-ion-orders.updateorder
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: cancel-order
      description: Cancel Order
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: streamone-ion-orders.cancelorder
      outputParameters:
      - type: object
        mapping: $.