ERP Integration / Push API

Direct Push API

For brands building custom middleware or using non-supported ERPs, use our Push API to ingest master data and inventory levels directly.

Delta Sync

Push only changed records. Ideal for real-time inventory updates triggered by ERP transactions.

Full Re-index

Overwrite entire availability state. Recommended for nightly reconciliations to fix drift.

Bulk Inventory Ingestion

Update thousands of SKUs in a single atomic request. We recommend batches of 500-1,000 items.

POST /v1/inventory/bulkapplication/json
{
  "brand_id": "brand_01JGK9",
  "updates": [
    {
      "sku": "TSHIRT-BLUE-L",
      "warehouse_id": "WH_SP_01",
      "quantity": 142
    },
    {
      "sku": "TSHIRT-RED-M",
      "warehouse_id": "WH_RJ_02",
      "quantity": 89
    }
  ]
}

Security Context

All Push API requests must include a Bearer Token associated with a Brand-level API Key. We recommend rotating these keys every 90 days.

Scope Required
inventory.write
Rate Limit
10,000 RPM / Brand