Download OpenAPI specification:Download
Public API for third-party integrations with Palm POS.
Retrieve orders across all stores in the organization, sorted by creation time (newest first). Supports filtering and cursor-based pagination.
| orgId required | string <uuid> Organization ID |
| store_id | string <uuid> Filter by a specific store |
| view | string Default: "all" Enum: "all" "active" "history"
|
| payment_status | string Comma-separated payment statuses (e.g. |
| fulfillment_status | string Comma-separated fulfillment statuses (e.g. |
| source | string Comma-separated order sources (e.g. |
| from | string Start date/time (RFC 3339 or |
| to | string End date/time (RFC 3339 or |
| amount_min | integer Minimum totalCents (inclusive) |
| amount_max | integer Maximum totalCents (inclusive) |
| page_size | integer [ 1 .. 200 ] Default: 200 Number of orders per page (1–200). Capped to 50 when |
| before | string <date-time> Pagination cursor — pass the |
| expand | string Example: expand=items,payments Comma-separated list of sub-resources to inline in each order object. Allowed values: |
{- "orders": [
- {
- "id": "550e8400-e29b-41d4-a716-446655440000",
- "storeId": "660e8400-e29b-41d4-a716-446655440001",
- "orderVersion": 3,
- "serviceType": "dine_in",
- "paymentStatus": "paid",
- "fulfillmentStatus": "completed",
- "subtotalCents": 2500,
- "discountCents": 0,
- "manualDiscountCents": 0,
- "taxCents": 250,
- "totalCents": 2750,
- "note": "",
- "source": "pos",
- "tzOffsetMinutes": 60,
- "createdAt": "2024-06-15T14:30:00Z"
}
], - "hasMore": false
}Retrieve full details of a single order including line items, refunds, and tax breakdown.
| orgId required | string <uuid> Organization ID |
| orderId required | string <uuid> Order ID |
{- "order": {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "storeId": "b8adcdc8-9238-4168-90f8-77b2d14c211c",
- "orderVersion": 0,
- "serviceType": "string",
- "paymentStatus": "unpaid",
- "fulfillmentStatus": "pending",
- "subtotalCents": 0,
- "discountCents": 0,
- "manualDiscountCents": 0,
- "taxCents": 0,
- "totalCents": 0,
- "couponCode": "string",
- "sequenceNumber": 0,
- "ticketNumber": "string",
- "note": "string",
- "source": "string",
- "tzOffsetMinutes": 0,
- "paidAt": "2019-08-24T14:15:22Z",
- "createdAt": "2019-08-24T14:15:22Z",
- "tableId": "073fbfcb-cd05-4203-be18-a1ce6f8e4d2d",
- "tableName": "string",
- "memberId": "92983ab9-49c8-444b-85ae-6e40402cf72e",
- "memberName": "string",
- "memberPhone": "string",
- "shippingAddressId": "622fc513-c50b-4df6-b9e2-85298a2851fb",
- "parentOrderId": "485b89cf-9581-4d1a-82ec-2b157356dfdf",
- "pickupName": "string",
- "pickupPhone": "string",
- "pickupAt": "2019-08-24T14:15:22Z",
- "items": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "orderId": "b3e1eced-f2bd-4d8c-9765-fbc9d1d222d5",
- "productId": "dcd53ddb-8104-4e48-8cc0-5df1088c6113",
- "productName": {
- "property1": "string",
- "property2": "string"
}, - "variantId": "d53feca7-c65b-4741-aca7-827a42d686bf",
- "variantName": {
- "property1": "string",
- "property2": "string"
}, - "qty": 0,
- "unitPriceCents": 0,
- "amountCents": 0,
- "discountCents": 0,
- "manualDiscountCents": 0,
- "isPriceOverride": true,
- "modifiers": [
- {
- "id": "string",
- "name": {
- "property1": "string",
- "property2": "string"
}, - "priceDeltaCents": 0
}
], - "taxRateId": "string",
- "taxCents": 0,
- "refundedAmountCents": 0,
- "refundedQty": 0,
- "submitRound": 0,
- "deltaQty": 0,
- "itemRole": "normal",
- "parentItemId": "0db0f2a4-d9dd-4f3d-a355-3733f9fd31f7",
- "comboGroupId": "string",
- "comboItemId": "string",
- "comboExtraCents": 0
}
], - "payments": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "orderId": "b3e1eced-f2bd-4d8c-9765-fbc9d1d222d5",
- "paymentMethodId": "b6df8625-cd25-4123-b345-638aa7b5d011",
- "paymentMethodName": {
- "property1": "string",
- "property2": "string"
}, - "paymentMethodCode": "string",
- "amountCents": 0,
- "tenderCents": 0,
- "note": "string",
- "createdAt": "2019-08-24T14:15:22Z"
}
], - "refunds": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "orderId": "b3e1eced-f2bd-4d8c-9765-fbc9d1d222d5",
- "amountCents": 0,
- "reason": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "items": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "refundId": "3324897f-393a-4bf6-b3af-0b999cbc2521",
- "orderItemId": "33207bce-c741-4896-a76b-8afcf6e4179a",
- "qty": 0,
- "amountCents": 0,
- "taxCents": 0
}
], - "payments": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "refundId": "3324897f-393a-4bf6-b3af-0b999cbc2521",
- "paymentMethodId": "b6df8625-cd25-4123-b345-638aa7b5d011",
- "paymentMethodName": {
- "property1": "string",
- "property2": "string"
}, - "paymentMethodCode": "string",
- "amountCents": 0
}
]
}
], - "taxBreakdown": [
- {
- "taxRateId": "string",
- "taxRatePercent": 0,
- "taxCents": 0
}
], - "appliedPromotions": [
- {
- "promotionId": "3eaf888b-516c-4eac-ac00-1312640986a2",
- "triggerType": "automatic",
- "memberCouponId": "a1b29835-5dec-4403-9554-da66ee442b91",
- "name": {
- "property1": "string",
- "property2": "string"
}, - "discountCents": 0,
- "lineAllocations": [
- {
- "lineIndex": 0,
- "discountCents": 0,
- "promotionId": "3eaf888b-516c-4eac-ac00-1312640986a2"
}
]
}
]
}
}