Synnex · Example Payload

Synnex Streamone Ion Createorder Example

Technology DistributionIT DistributionCloud MarketplaceFortune 100Supply Chain

Synnex Streamone Ion Createorder Example is an example object payload from Synnex, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "path": "/accounts/{accountId}/orders",
    "headers": {
      "Authorization": "Bearer {ACCESS_TOKEN}",
      "Content-Type": "application/json"
    },
    "parameters": {
      "accountId": "ACC-RESELLER-001"
    },
    "body": {
      "customerId": "CUST-10001",
      "items": [
        {
          "productId": "MSFT-M365-BIZ-STD",
          "sku": "KLQ-00211",
          "quantity": 25,
          "price": 12.50
        }
      ]
    }
  },
  "response": {
    "status": 201,
    "body": {
      "orderId": "ORD-2026-055891",
      "customerId": "CUST-10001",
      "status": "pending",
      "totalAmount": 312.50,
      "currency": "USD",
      "createdAt": "2026-05-03T15:00:00Z",
      "items": [
        {
          "productId": "MSFT-M365-BIZ-STD",
          "sku": "KLQ-00211",
          "quantity": 25,
          "price": 12.50
        }
      ]
    }
  }
}