Sync orders data with Square through Apideck's unified API. One integration, instant access.
Full CRUD support available through our unified API
Fields available for Square Orders
idreference_idstatuscurrencylocation_idtotal_amounttotal_tiptotal_taxtotal_discounttotal_service_chargefulfillmentsline_itemspaymentsrefundsdiscounts+4 moreSample 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
...Start syncing Square orders in minutes
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 dataWe 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.
Build Square integrations in your favorite language with our official SDKs.
Build Square integrations with the official Node.js SDK.
Build Square integrations with the official TypeScript SDK.
Build Square integrations with the official PHP SDK.
Build Square integrations with the official .NET.
Build Square integrations with the official Python SDK.
Build Square integrations with the official Java SDK.
Build Square integrations with the official Go SDK.