---
title: "List the notes on an order"
method: GET
path: "/shop/orders/{orderId}/notes"
tags: ["Orders"]
---

# List the notes on an order

`GET /shop/orders/{orderId}/notes`

Retrieve every internal note attached to an order, ordered oldest-first.
Notes are typically used by front-of-house and operations staff to capture
requests or context that doesn't belong on the order itself — for example
"guest is celebrating an anniversary" or "double room requested".

## Response `200`

The order notes were successfully retrieved.

- object
  - `data` OrderNote[], required
    - `id` string, required
    - `content` string, required — The contents of the note.
    - `order_id` string — The order this note belongs too
    - `created_at` string, date-time — The date and time the note was created.
    - `created_by` object
      - `id` string, required — The ID of the user who added the note.
      - `name` string, required — The name of the user who added the note.
    - `created_by_id` string — The ID of the user who added the note.

## Other responses

- `404` — The resource couldn't be found

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
