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

# List notes

`GET /v2/notes`

List notes for all records or for a specific record.

Required scopes: `note:read`, `object_configuration:read`, `record_permission:read`.

## Query parameters

- `limit` integer — The maximum number of results to return. The default is `10` and the maximum is `50`. See the [full guide to pagination here](/docs/pagination).
- `offset` integer — The number of results to skip over before returning. The default is `0`. See the [full guide to pagination here](/docs/pagination).
- `parent_object` string — The slug or ID of the parent object the notes belong to.
- `parent_record_id` string, uuid — The ID of the parent record the notes belong to.

## Response `200`

Success

- object — Success
  - `data` Note[], required
    - `id` object, required
      - `workspace_id` string, uuid, required — The ID of the workspace the note belongs to.
      - `note_id` string, uuid, required — The ID of the note.
    - `parent_object` string, required — The slug or ID of the parent object the note belongs to.
    - `parent_record_id` string, uuid, required — The ID of the parent record the note belongs to.
    - `title` string, required — The note title. The title is plaintext only and has no formatting.
    - `content_plaintext` string, required — The plaintext representation of the note content. The line feed character `\n` represents new lines within the note content.
    - `content_markdown` string, required — The markdown representation of the note content with formatting applied based on block types and styles.
    - `created_by_actor` object, required — The actor that created this note.
      - `id` string, nullable — An ID to identify the actor.
      - `type` 'api-token' | 'workspace-member' | 'system' | 'app', nullable — The type of actor. [Read more information on actor types here](/docs/actors).
    - `created_at` string, required — When the note was created.

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/d-stoll/apis/attio-api.md) · [All operations](https://skmtc.net/d-stoll/apis/attio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/d-stoll/attio-api/revisions/ebcf9b5c6aa3/schema)
