---
title: "Retrieve an order note"
method: GET
path: "/shop/orders/{orderId}/notes/{noteId}"
tags: ["Orders"]
---

# Retrieve an order note

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

Retrieve a single note attached to an order.

## Response `200`

The order note was successfully retrieved.

- object
  - `data` OrderNote, required — A note relating to an order.
    - `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)
