Synnex · Capability

TD SYNNEX StreamOne ION API — Customers

TD SYNNEX StreamOne ION API — Customers. 4 operations. Lead operation: List Customers. Self-contained Naftiko capability covering one Synnex business surface.

Run with Naftiko SynnexCustomers

What You Can Do

GET
Listcustomers — List Customers
/v1/accounts/{accountid}/customers
POST
Createcustomer — Create Customer
/v1/accounts/{accountid}/customers
GET
Getcustomer — Get Customer
/v1/accounts/{accountid}/customers/{customerid}
PUT
Updatecustomer — Update Customer
/v1/accounts/{accountid}/customers/{customerid}

MCP Tools

list-customers

List Customers

read-only idempotent
create-customer

Create Customer

get-customer

Get Customer

read-only idempotent
update-customer

Update Customer

idempotent

Capability Spec

streamone-ion-customers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TD SYNNEX StreamOne ION API — Customers
  description: 'TD SYNNEX StreamOne ION API — Customers. 4 operations. Lead operation: List Customers. Self-contained Naftiko
    capability covering one Synnex business surface.'
  tags:
  - Synnex
  - Customers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYNNEX_API_KEY: SYNNEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: streamone-ion-customers
    baseUri: https://ion.tdsynnex.com/api/v3
    description: TD SYNNEX StreamOne ION API — Customers business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-customers
      path: /accounts/{accountId}/customers
      operations:
      - name: listcustomers
        method: GET
        description: List Customers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
        - name: pageSize
          in: query
          type: integer
      - name: createcustomer
        method: POST
        description: Create Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: accounts-accountId-customers-customerId
      path: /accounts/{accountId}/customers/{customerId}
      operations:
      - name: getcustomer
        method: GET
        description: Get Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecustomer
        method: PUT
        description: Update 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.SYNNEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: streamone-ion-customers-rest
    port: 8080
    description: REST adapter for TD SYNNEX StreamOne ION API — Customers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/customers
      name: accounts-accountid-customers
      description: REST surface for accounts-accountId-customers.
      operations:
      - method: GET
        name: listcustomers
        description: List Customers
        call: streamone-ion-customers.listcustomers
        with:
          page: rest.page
          pageSize: rest.pageSize
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomer
        description: Create Customer
        call: streamone-ion-customers.createcustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/customers/{customerid}
      name: accounts-accountid-customers-customerid
      description: REST surface for accounts-accountId-customers-customerId.
      operations:
      - method: GET
        name: getcustomer
        description: Get Customer
        call: streamone-ion-customers.getcustomer
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecustomer
        description: Update Customer
        call: streamone-ion-customers.updatecustomer
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streamone-ion-customers-mcp
    port: 9090
    transport: http
    description: MCP adapter for TD SYNNEX StreamOne ION API — Customers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-customers
      description: List Customers
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-customers.listcustomers
      with:
        page: tools.page
        pageSize: tools.pageSize
      outputParameters:
      - type: object
        mapping: $.
    - name: create-customer
      description: Create Customer
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: streamone-ion-customers.createcustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-customer
      description: Get Customer
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-customers.getcustomer
      outputParameters:
      - type: object
        mapping: $.
    - name: update-customer
      description: Update Customer
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: streamone-ion-customers.updatecustomer
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.