---
title: "Retrieve a list of Client Notes"
method: GET
path: "/v2/clients/{clientId}/notes"
tags: ["Client Notes"]
---

# Retrieve a list of Client Notes

`GET /v2/clients/{clientId}/notes`

Returns a paginated list of notes for the given client, ordered by creation date descending.

## Path parameters

- `clientId` string, required

## Query parameters

- `pageSize` number
- `page` number

## Headers

- `Authorization` string, required

## Response `200`

Paginated list of client notes.

- ResponseClientNotesV2Dto
  - `pageSize` number — The maximum number of items returned per page.
  - `page` number — The current page number.
  - `totalResults` number — The total number of results.
  - `hasMore` boolean — Whether there are more results.
  - `data` ResponseClientNoteV2Dto[] — A list of Client Notes.
    - `id` string — The ID of the client note (prefix `CLN-`).
    - `note` string — The note content.
    - `pin` boolean — Whether the note is pinned to the top of the list.
    - `techName` string — The name of the user who created the note.
    - `createdAt` string — The date and time the note was created.

## Other responses

- `401` — Missing or invalid authentication token.
- `404` — No client with the given ID exists for this account.

---

[API](https://skmtc.net/workiz/apis/developer-api.md) · [All operations](https://skmtc.net/workiz/apis/developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/workiz/developer-api/revisions/14666f4db0f8/schema)
