---
title: "Get a specific note"
method: GET
path: "/api/notes/{noteId}"
tags: ["Note"]
---

# Get a specific note

`GET /api/notes/{noteId}`

## Path parameters

- `noteId` string, required

## Response `200`

The note for the given id

- NoteDto — Represents a note on a document
  - `id` string, required — Unique id associated to this entity.
  - `parentId` string, nullable — Unique identifier of the object to which the note is attached Can be 24 or 36 characters, depending on parent type
  - `parentType` 'salesOrder' | 'purchaseOrder' | 'quote' | 'invoice' — Note parent document type
  - `body` string, nullable — Note text
  - `mentions` string[], nullable — User Ids to tag in the note. Please reference /api/users endpoints.

## Other responses

- `404` — Note did not exist

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
