Hardware Orders

Product catalogue and customer hardware orders

Partners can list products and place hardware orders against a customer.

Product catalogue

GET /v2/products
Authorization: Bearer <token>

Returns available products (ID, name, category, make, cost, etc.). Use product IDs when building an order.

List customer orders

GET /v2/customers/{customerID}/orders?limit=10&offset=0
Authorization: Bearer <token>

Each order includes:

FieldDescription
orderIDOrder identifier
customerIDOwning customer
productsLine items (quantity, name, unit cost, …)
statusOrder status
deliveryAddressDelivery address
trackingEmailEmail used for shipment tracking
orderNumberHuman-readable order reference

Place an order

POST /v2/customers/{customerID}/orders
Content-Type: application/json
Authorization: Bearer <token>

Request body fields are defined in API ReferenceCustomer OrdersCreate customer order.

Some order flows may return a jobID for async processing — treat like other async operations in Async jobs.

Webhooks

Register for order_created to receive notification when an order is placed — Webhooks.

Related



Did this page help you?