Common Operations
The SKU.io API has thousands of endpoints, but most integrations only ever touch a few dozen. This page is the shortlist — the create / read / update calls you'll reach for first in each domain, with the exact method, path, and required token scope.
Every operation name links to its full reference page (parameters, request body, response schema, and a live example). Each domain heading links to its section in the API Reference, where you can browse the complete endpoint list.
Start with the Quickstart to make your first authenticated call, then skim API Conventions for the /api vs /api/v2 split and the response envelope. Scopes below (e.g. orders:write) map to token permissions — see Authentication.
Sales Orders
The core of order management: create orders, read them back, update, and dispatch shipments. → Browse all Sales Orders endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Sales Orders | GET /api/sales-orders/list | orders:read |
| Create Sales Order | POST /api/sales-orders | orders:write |
| Get Sales Order | GET /api/sales-orders/{salesOrder} | orders:read |
| Update Sales Order | PUT /api/sales-orders/{salesOrder} | orders:write |
| Fulfill Sales Order | POST /api/sales-orders/{salesOrder}/fulfill | orders:write |
Fulfillment Orders
The dispatch side of fulfillment — the shipments warehouse and 3PL teams work off. → Browse all Fulfillment Orders endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Active Fulfillment Orders | GET /api/fulfillment-orders | orders:read |
| Get Fulfillment Order | GET /api/fulfillment-orders/{fulfillmentOrder} | orders:read |
| Create Fulfillment Order | POST /api/fulfillment-orders | orders:write |
Products
Your catalog. List and search products, create and update them, or look one up by SKU. → Browse all Products endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Products | GET /api/v2/products | products:read |
| Create Product | POST /api/products | products:write |
| Get Product | GET /api/products/{id} | products:read |
| Update Product | PUT /api/products/{id} | products:write |
| Get Product by SKU | GET /api/products/by-sku | products:read |
Inventory
Stock movement, adjustments, and allocation across warehouses. → Browse all Inventory endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Inventory Movements | GET /api/v2/inventory-movements | inventory:read |
| List Inventory Adjustments | GET /api/v2/inventory-adjustments | inventory:read |
| Create Inventory Adjustment | POST /api/inventory-adjustments | inventory:write |
| List Allocations | GET /api/v2/inventory-allocations | inventory:read |
Purchase Orders
Buying side: raise POs to suppliers, read them back, and track them through receipt. → Browse all Purchase Orders endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Purchase Orders | GET /api/purchase-orders/list | purchase-orders:read |
| Create Purchase Order | POST /api/purchase-orders | purchase-orders:write |
| Get Purchase Order | GET /api/purchase-orders/{purchase_order} | purchase-orders:read |
Customers
Your contacts on the sell side. → Browse all Customers endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Customers | GET /api/v2/customers | customers:read |
| Create Customer | POST /api/customers | customers:write |
| Get Customer | GET /api/customers/{customer} | customers:read |
| Update Customer | PUT /api/customers/{customer} | customers:write |
Suppliers
Your contacts on the buy side. → Browse all Suppliers endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Suppliers | GET /api/suppliers | Public |
| Create Supplier | POST /api/suppliers | suppliers:write |
| Get Supplier | GET /api/suppliers/{supplier} | suppliers:read |
Warehouses
Where inventory lives. → Browse all Warehouses endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Warehouses | GET /api/v2/warehouses | warehouses:read |
| Create Warehouse | POST /api/warehouses | warehouses:write |
Returns & RMAs
Reverse logistics — return authorizations and their disposition. → Browse all Returns & RMAs endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List RMAs | GET /api/rmas | returns:read |
| Get RMA | GET /api/rmas/{rma} | returns:read |
Accounting
Financial transactions and the ledger. → Browse all Accounting endpoints
| Operation | Method & Path | Scope |
|---|---|---|
| List Ledger Entries | GET /api/ledger/entries | Public |
Webhooks
Get notified on events instead of polling. → Browse all Webhooks endpoints · Webhooks guide
| Operation | Method & Path | Scope |
|---|---|---|
| List Webhooks | GET /api/webhooks | Public |
| Create Webhook | POST /api/webhooks | Public |
| List Event Types | GET /api/webhook-events | webhooks:manage |
Integrations
Connect and sync with sales channels and 3PLs. Each provider has its own folder in the reference:
- Sales Channels overview — the shared channel API
- Amazon · Shopify · eBay · Walmart · BigCommerce · WooCommerce · TikTok Shop
- Accounting: QuickBooks Online · Xero
- 3PL / fulfillment: ShipStation · ShipHero · Shipfusion · Trackstar
Can't find what you need? The full API Reference is searchable, or point an AI assistant at the docs — see Build with AI.