Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/synnex-orders-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: TD SYNNEX StreamOne ION Cart Orders API
description: The StreamOne ION API is TD SYNNEX's interface for cloud vendors and reseller partners to manage cloud subscriptions, product catalogs, end customers, and orders through a unified platform. The API uses OAuth 2.0 authentication and supports multi-vendor cloud marketplace operations including Microsoft CSP, Azure, and Google Workspace.
version: v3
contact:
url: https://docs.streamone.cloud/
servers:
- url: https://ion.tdsynnex.com/api/v3
description: Production V3 API
security:
- bearerAuth: []
tags:
- name: Orders
description: Order creation and management.
paths:
/accounts/{accountId}/orders:
get:
operationId: listOrders
summary: List Orders
description: Retrieves a list of orders for the reseller account.
tags:
- Orders
parameters:
- $ref: '#/components/parameters/accountId'
- name: status
in: query
schema:
type: string
enum:
- pending
- completed
- cancelled
responses:
'200':
description: Order list returned
content:
application/json:
schema:
$ref: '#/components/schemas/OrderList'
post:
operationId: createOrder
summary: Create Order
description: Creates a new order for cloud products on behalf of an end customer. Supports new tenants, existing tenants, and subscription updates.
tags:
- Orders
parameters:
- $ref: '#/components/parameters/accountId'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/OrderRequest'
responses:
'201':
description: Order created
content:
application/json:
schema:
$ref: '#/components/schemas/Order'
/accounts/{accountId}/orders/{orderId}:
get:
operationId: getOrder
summary: Get Order
description: Retrieves details for a specific order.
tags:
- Orders
parameters:
- $ref: '#/components/parameters/accountId'
- $ref: '#/components/parameters/orderId'
responses:
'200':
description: Order details returned
content:
application/json:
schema:
$ref: '#/components/schemas/Order'
components:
schemas:
OrderItem:
type: object
properties:
productId:
type: string
sku:
type: string
quantity:
type: integer
price:
type: number
OrderRequest:
type: object
required:
- customerId
- items
properties:
customerId:
type: string
items:
type: array
items:
$ref: '#/components/schemas/OrderItem'
Order:
type: object
properties:
orderId:
type: string
customerId:
type: string
status:
type: string
enum:
- pending
- completed
- cancelled
totalAmount:
type: number
currency:
type: string
createdAt:
type: string
format: date-time
items:
type: array
items:
$ref: '#/components/schemas/OrderItem'
OrderList:
type: object
properties:
items:
type: array
items:
$ref: '#/components/schemas/Order'
totalCount:
type: integer
parameters:
orderId:
name: orderId
in: path
required: true
schema:
type: string
accountId:
name: accountId
in: path
required: true
schema:
type: string
description: The reseller's TD SYNNEX account identifier.
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: OAuth 2.0 bearer token