Unified Items Operations

Standard CRUD operations normalized across all platforms

ListGET
/items

Retrieve all items with pagination and filtering

GetGET
/items/{id}

Fetch a single item by ID

CreatePOST
/items

Create a new item

UpdatePATCH
/items/{id}

Update an existing item

Quick Start

Start syncing items in minutes

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

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

// List items from any connected pos platform
const response = await apideck.pos.itemsAll()

// 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 POS Resources

Explore other unified endpoints in the POS API

Develop faster with our SDKs

You can use the official Apideck SDKs to simplify integrating our APIs.

Launch accounting integrations in weeks, not months

Sign Up