---
title: "List Orders"
method: GET
path: "/tenants/{tenant_id}/orders"
tags: ["Orders"]
---

# List Orders

`GET /tenants/{tenant_id}/orders`

Retrieve a list of orders for a tenant.

Orders are returned sorted by time, with the newest orders first.
Without the page and per_page parameters, the first 100 orders will be returned.
If per_page is specified, a maximum of 250 orders will be returned.

## Path parameters

- `tenant_id` string, uuid, required

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

Orders successfully retrieved.

- object
  - `orders` object[], required
    - `id` string, required — Unique ID identifying the order.
    - `customer_first_name` string, required — First name of the customer who the order belongs to
    - `customer_last_name` string, required — Last name of the customer who the order belongs to
    - `customer_address` string, required — Address of the customer who the order belongs to
    - `phase` string, nullable — Phase in order lifecycle

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden

---

[API](https://skmtc.net/aurorasolar/apis/sync-api.md) · [All operations](https://skmtc.net/aurorasolar/apis/sync-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aurorasolar/sync-api/revisions/5b41808d104d/schema)
