One unified API to sync order types across all major pos platforms. Build once, integrate everywhere.
Standard CRUD operations normalized across all platforms
/order-typesRetrieve all order types with pagination and filtering
/order-types/{id}Fetch a single order type by ID
/order-typesCreate a new order type
/order-types/{id}Update an existing order type
Start syncing order types in minutes
import { Apideck } from '@apideck/node'
const apideck = new Apideck({
apiKey: 'YOUR_API_KEY',
appId: 'YOUR_APP_ID',
consumerId: 'user-123'
})
// List order types from any connected pos platform
const response = await apideck.pos.ordertypesAll()
// Returns normalized data regardless of the underlying platform
console.log(response.data)
// [
// { id: '123', ... },
// { id: '456', ... }
// ]
// Works the same for Xero, QuickBooks, NetSuite, etc.You can use the official Apideck SDKs to simplify integrating our APIs.
The official Node.js SDK supports all the Unify API endpoints.
The official TypeScript SDK with full type definitions for all endpoints.
The official PHP SDK supports all the Unify API endpoints.
The official .NET SDK supports all the Unify API endpoints.
The official Python SDK supports all the Unify API endpoints.
The official Java SDK supports all the Unify API endpoints.
The official Go SDK supports all the Unify API endpoints.