Supported Operations for Square Orders

Full CRUD support available through our unified API

list
get
create
update
delete

Supported Fields

19 fields

Fields available for Square Orders

idreference_idstatuscurrencylocation_idtotal_amounttotal_tiptotal_taxtotal_discounttotal_service_chargefulfillmentsline_itemspaymentsrefundsdiscounts+4 more

API Model Preview

Sample response structure for orders

{
  "id": "12345",
  "reference_id": "12345",
  "status": "active",
  "currency": "USD",
  "location_id": "12345",
  "total_amount": 100,
  "total_tip": 100,
  "total_tax": 100,
  "total_discount": 100,
  "total_service_charge": 100,
  "fulfillments": "string",
  "line_items": [
    {
      "id": "12345",
      "row_id": "12345",
      "description": "Product or service description",
      "quantity": 1,
      "unit_price": 100,
      "total_amount": 100
    }
  ],
  "payments": [
    {
      "i
  ...

Quick Start Example

Start syncing Square orders in minutes

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

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List orders from Square
const result = await apideck.pos.orders.list({
  serviceId: 'square'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified orders data

Other connectors with Orders support

We build and maintain connectors, so you don't have to. View our full list of POS connectors.
Missing a connector? We're able to add new connectors.

Includes 2,500 free API calls

Square SDKs

Build Square integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up