Search Documentation
Search documentation topics, API endpoints, and guides
getOrders
OpenAPI Documentation
GET /v1/orders
List orders
List orders owned by the authenticated user or organization.
Last updated on 5/26/2026
Endpoint
get/v1/orders
Lists orders owned by the authenticated customer or organization. Use limit and offset for pagination, and sourceSystem when you need to narrow results to a specific integration. Treat retrieved order status as the source of truth for reconciliation.
Authentication
Include your customer API key in the Authorization header:
Authorization: Bearer $AUTOMATIC_PALLET_API_KEYRequest
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| limit | query | integer | Optional | Maximum number of items to return. Defaults to 50 when omitted. |
| offset | query | integer | Optional | Zero-based offset for paginated list requests. |
| sourceSystem | query | string | Optional | Optional client-defined source system used to filter orders created by a specific integration. |
Responses
200Orders for the authenticated customer.
{
"$ref": "#/components/schemas/OrderListResponse"
}401Missing or invalid API key.
{
"$ref": "#/components/schemas/ErrorResponse"
}403API key lacks orders:read.
{
"$ref": "#/components/schemas/ErrorResponse"
}Example cURL Request
curl "https://automaticpallet.com/v1/orders?limit=50&offset=0" \
-H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"