Skip to main content

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.

New here?

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

OperationMethod & PathScope
List Sales OrdersGET /api/sales-orders/listorders:read
Create Sales OrderPOST /api/sales-ordersorders:write
Get Sales OrderGET /api/sales-orders/{salesOrder}orders:read
Update Sales OrderPUT /api/sales-orders/{salesOrder}orders:write
Fulfill Sales OrderPOST /api/sales-orders/{salesOrder}/fulfillorders:write

Fulfillment Orders

The dispatch side of fulfillment — the shipments warehouse and 3PL teams work off. → Browse all Fulfillment Orders endpoints

OperationMethod & PathScope
List Active Fulfillment OrdersGET /api/fulfillment-ordersorders:read
Get Fulfillment OrderGET /api/fulfillment-orders/{fulfillmentOrder}orders:read
Create Fulfillment OrderPOST /api/fulfillment-ordersorders:write

Products

Your catalog. List and search products, create and update them, or look one up by SKU. → Browse all Products endpoints

OperationMethod & PathScope
List ProductsGET /api/v2/productsproducts:read
Create ProductPOST /api/productsproducts:write
Get ProductGET /api/products/{id}products:read
Update ProductPUT /api/products/{id}products:write
Get Product by SKUGET /api/products/by-skuproducts:read

Inventory

Stock movement, adjustments, and allocation across warehouses. → Browse all Inventory endpoints

OperationMethod & PathScope
List Inventory MovementsGET /api/v2/inventory-movementsinventory:read
List Inventory AdjustmentsGET /api/v2/inventory-adjustmentsinventory:read
Create Inventory AdjustmentPOST /api/inventory-adjustmentsinventory:write
List AllocationsGET /api/v2/inventory-allocationsinventory:read

Purchase Orders

Buying side: raise POs to suppliers, read them back, and track them through receipt. → Browse all Purchase Orders endpoints

OperationMethod & PathScope
List Purchase OrdersGET /api/purchase-orders/listpurchase-orders:read
Create Purchase OrderPOST /api/purchase-orderspurchase-orders:write
Get Purchase OrderGET /api/purchase-orders/{purchase_order}purchase-orders:read

Customers

Your contacts on the sell side. → Browse all Customers endpoints

OperationMethod & PathScope
List CustomersGET /api/v2/customerscustomers:read
Create CustomerPOST /api/customerscustomers:write
Get CustomerGET /api/customers/{customer}customers:read
Update CustomerPUT /api/customers/{customer}customers:write

Suppliers

Your contacts on the buy side. → Browse all Suppliers endpoints

OperationMethod & PathScope
List SuppliersGET /api/suppliersPublic
Create SupplierPOST /api/supplierssuppliers:write
Get SupplierGET /api/suppliers/{supplier}suppliers:read

Warehouses

Where inventory lives. → Browse all Warehouses endpoints

OperationMethod & PathScope
List WarehousesGET /api/v2/warehouseswarehouses:read
Create WarehousePOST /api/warehouseswarehouses:write

Returns & RMAs

Reverse logistics — return authorizations and their disposition. → Browse all Returns & RMAs endpoints

OperationMethod & PathScope
List RMAsGET /api/rmasreturns:read
Get RMAGET /api/rmas/{rma}returns:read

Accounting

Financial transactions and the ledger. → Browse all Accounting endpoints

OperationMethod & PathScope
List Ledger EntriesGET /api/ledger/entriesPublic

Webhooks

Get notified on events instead of polling. → Browse all Webhooks endpoints · Webhooks guide

OperationMethod & PathScope
List WebhooksGET /api/webhooksPublic
Create WebhookPOST /api/webhooksPublic
List Event TypesGET /api/webhook-eventswebhooks:manage

Integrations

Connect and sync with sales channels and 3PLs. Each provider has its own folder in the reference:


Can't find what you need? The full API Reference is searchable, or point an AI assistant at the docs — see Build with AI.