---
title: "List Notes"
method: GET
path: "/notes"
tags: ["Notes"]
---

# List Notes

`GET /notes`

List notes for a customer chat or WA Group chat. Use `to` + `from` for customer chats, or `groupId` for WA Group chats. Rate limit: 60 requests per minute per organization.

## Query parameters

- `groupId` string
- `from` string, phone
- `to` string, phone
- `limit` number
- `lastNoteId` string
- `lastNoteDate` string, date-time

## Response `200`

List of notes retrieved successfully

- GetPublicNotesResponseDto
  - `notes` PublicNoteResponseDto[] — List of notes
    - `id` string — Unique identifier of the note
    - `note` string — Text content of the note
    - `createdBy` string — Name of the user who created the note
    - `updatedBy` string — Name of the user who last updated the note
    - `dateCreated` string, date-time — Timestamp when the note was created
    - `dateUpdated` string, date-time — Timestamp when the note was last updated
  - `hasMore` boolean — Indicates if there are more notes available after this page
  - `lastNoteId` string, nullable — Cursor: ID of the last note in the current page (use with lastNoteDate on the next request)
  - `lastNoteDate` string, date-time, nullable — Cursor: timestamp of the last note in the current page (use with lastNoteId on the next request)
  - `totalCount` number — Total number of notes for this chat and customer

## Other responses

- `400` — Incorrect payload
- `401` — Unauthorized
- `404` — WABA, customer or chat not found

---

[API](https://skmtc.net/doubletick/apis/doubletick-public-apis.md) · [All operations](https://skmtc.net/doubletick/apis/doubletick-public-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/doubletick/doubletick-public-apis/versions/bba484527d34/schema)
