---
title: "Get a note"
method: GET
path: "/v2/notes/{note_id}"
tags: ["Notes"]
---

# Get a note

`GET /v2/notes/{note_id}`

Get a single note by ID.

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

## Path parameters

- `note_id` string, uuid, required — A UUID which identifies the note.

## 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.
    - `meeting_id` string, uuid, nullable, required — The ID of the meeting associated with this note, or null if no meeting is associated.
    - `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. Supports a subset of markdown features including: - Headings (levels 1-3 only with `#`, `##`, `###`) - Unordered lists (`-`, `*`, `+`) - Ordered lists (`1.`, `2.`, etc.) - Text styling: `**bold**`, `*italic*`, `~~strikethrough~~`, `==highlighted==` - Links: `[link text](https://example.com)` Note that note images are not returned as part of the markdown API representation.
    - `tags` union[], required — An array of records or workspace members that are @-tagged in the note content.
      - union
        - object
          - `type` 'workspace-member', required — The type of entity tagged in the note. Can be either 'workspace-member' or 'record'
          - `workspace_member_id` string, uuid, required — The ID of the workspace member that is tagged in the note.
        - object
          - `type` 'record', required — The type of entity tagged in the note. Can be either 'workspace-member' or 'record'
          - `object` string, required — The slug or ID of the object that the tagged record belongs to.
          - `record_id` string, uuid, required — The ID of the record that is tagged in the note.
    - `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/attio/apis/attio-api.md) · [All operations](https://skmtc.net/attio/apis/attio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/attio/attio-api/versions/40a8e41d06a2/schema)
