Unified Orders Operations

Standard CRUD operations normalized across all platforms

ListGET
/orders

Retrieve all orders with pagination and filtering

GetGET
/orders/{id}

Fetch a single order by ID

CreatePOST
/orders

Create a new order

UpdatePATCH
/orders/{id}

Update an existing order

Quick Start

Start syncing orders in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: 'YOUR_API_KEY',
  appId: 'YOUR_APP_ID',
  consumerId: 'user-123'
})

// List orders from any connected ecommerce platform
const response = await apideck.ecommerce.orders.list()

// Returns normalized data regardless of the underlying platform
console.log(response.data)
// [
//   { id: '123', ... },
//   { id: '456', ... }
// ]

// Works the same for Xero, QuickBooks, NetSuite, etc.

Other Ecommerce Resources

Explore other unified endpoints in the Ecommerce API

Launch accounting integrations in weeks, not months

Get started for free