## Overview

You can use this endpoint to retrieve the Notes of a single existing Sales Order. To consume this endpoint, you must be an [Authenticated User](https://developer.sellercloud.com/dev-article/authentication/). As soon as you receive a valid token, you need to pass it to the call. Additionally, you need a valid Sellercloud Order ID.

### Endpoint

An example of this endpoint for server **XX** is:

https:// **xx**.api.sellercloud.com/rest/api/orders/notes/{order_id}

For your server, the endpoint will be:

https:// **{your_server_id}**.api.sellercloud.com/rest/api/orders/notes/{id}

### Request

- **Method Type:** HttpGet
- **Authorization:** Use **Bearer Token** + token received from token authentication
- **Header info:** **Content-Type: application/json**
- **Query Parameter:** valid **Sellercloud Order ID**.

### Response

- If the user is authenticated and provides a valid page number and page size, then the response will be **Status Code 200 => OK.**
- If the user is not authenticated, then the response will be **Status Code 401 => Not Valid Token.**
- In case of an error, the response will be **Status Code 500 => Internal Server Error.**

### Response Body

```
[
  {
    "EntityID": 0,
    "Category": 0,
    "NoteID": 0,
    "Note": "string",
    "AuditDate": "2026-07-17T09:09:16.265Z",
    "CreatedBy": 0,
    "CreatedByName": "string",
    "CreatedByEmail": "string",
    "UsersToNotify": [
      0
    ],
    "UserNamesToNotify": [
      "string"
    ],
    "IsPinned": true,
    "AllowEditPinnedOrder": true
  }
]
```
