Orders

List the notes on an order

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".

get/shop/orders/{orderId}/notes

Response

The order notes were successfully retrieved.

Example response

{
  "data": [
    {
      "id": "5ed2b95f72823c4f98419f19",
      "content": "Requested a double treatment room.",
      "order_id": "5ed2b95f72823c4f98419f20",
      "created_at": "2019-01-15T12:00:00+01:00",
      "created_by": {
        "id": "5ed2b95f72823c4f98419f20",
        "name": "Jane Smith"
      },
      "created_by_id": "5ed2b95f72823c4f98419f20"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.