TD SYNNEX · Capability

TD SYNNEX StreamOne Ion Partner API — Reports

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

Run with Naftiko Td SynnexReports

What You Can Do

GET
Listreports — List Reports
/v1/v3/accounts/{accountid}/reports
GET
Getreportdata — Get Report Data
/v1/v3/accounts/{accountid}/reports/{reportid}/data
GET
Getreportmetadata — Get Report Metadata
/v1/v3/accounts/{accountid}/reports/{reportid}/metadata

MCP Tools

list-reports

List Reports

read-only idempotent
get-report-data

Get Report Data

read-only idempotent
get-report-metadata

Get Report Metadata

read-only idempotent

Capability Spec

streamone-ion-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TD SYNNEX StreamOne Ion Partner API — Reports
  description: 'TD SYNNEX StreamOne Ion Partner API — Reports. 3 operations. Lead operation: List Reports. Self-contained
    Naftiko capability covering one Td Synnex business surface.'
  tags:
  - Td Synnex
  - Reports
  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-reports
    baseUri: https://ion.tdsynnex.com
    description: TD SYNNEX StreamOne Ion Partner API — Reports business capability. Self-contained, no shared references.
    resources:
    - name: v3-accounts-accountId-reports
      path: /v3/accounts/{accountId}/reports
      operations:
      - name: listreports
        method: GET
        description: List Reports
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v3-accounts-accountId-reports-reportId-data
      path: /v3/accounts/{accountId}/reports/{reportId}/data
      operations:
      - name: getreportdata
        method: GET
        description: Get Report Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: format
          in: query
          type: string
          description: Output format (omit for JSON, use 'csv' for CSV export)
        - name: startDate
          in: query
          type: string
          description: Report start date (YYYY-MM-DD)
        - name: endDate
          in: query
          type: string
          description: Report end date (YYYY-MM-DD)
    - name: v3-accounts-accountId-reports-reportId-metadata
      path: /v3/accounts/{accountId}/reports/{reportId}/metadata
      operations:
      - name: getreportmetadata
        method: GET
        description: Get Report Metadata
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TD_SYNNEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: streamone-ion-reports-rest
    port: 8080
    description: REST adapter for TD SYNNEX StreamOne Ion Partner API — Reports. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v3/accounts/{accountid}/reports
      name: v3-accounts-accountid-reports
      description: REST surface for v3-accounts-accountId-reports.
      operations:
      - method: GET
        name: listreports
        description: List Reports
        call: streamone-ion-reports.listreports
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/accounts/{accountid}/reports/{reportid}/data
      name: v3-accounts-accountid-reports-reportid-data
      description: REST surface for v3-accounts-accountId-reports-reportId-data.
      operations:
      - method: GET
        name: getreportdata
        description: Get Report Data
        call: streamone-ion-reports.getreportdata
        with:
          format: rest.format
          startDate: rest.startDate
          endDate: rest.endDate
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v3/accounts/{accountid}/reports/{reportid}/metadata
      name: v3-accounts-accountid-reports-reportid-metadata
      description: REST surface for v3-accounts-accountId-reports-reportId-metadata.
      operations:
      - method: GET
        name: getreportmetadata
        description: Get Report Metadata
        call: streamone-ion-reports.getreportmetadata
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streamone-ion-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for TD SYNNEX StreamOne Ion Partner API — Reports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-reports
      description: List Reports
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-reports.listreports
      outputParameters:
      - type: object
        mapping: $.
    - name: get-report-data
      description: Get Report Data
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-reports.getreportdata
      with:
        format: tools.format
        startDate: tools.startDate
        endDate: tools.endDate
      outputParameters:
      - type: object
        mapping: $.
    - name: get-report-metadata
      description: Get Report Metadata
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streamone-ion-reports.getreportmetadata
      outputParameters:
      - type: object
        mapping: $.