# Get Note

`lawmatics_get-note` · Lawmatics MCP tool · Notes

Fetch a single note from Lawmatics by ID, including a `relationships` envelope of {id,type} pointers to the owning record (notable) and the authoring user (createdBy).

## Input

- **noteId** `string` (required, pattern: ^\d+$) — ID of the note to fetch; a numeric string

## Output

- **id** `string` (required) — Unique ID of the note
- **title** `string | null` (required) — Title/subject of the note; null if unset
- **body** `string | null` (required) — Body content of the note; null if unset
- **createdAt** `string | null` (required) — When the note was created, as an ISO 8601 timestamp; null if unknown
- **updatedAt** `string | null` (required) — When the note was last updated, as an ISO 8601 timestamp; null if unknown
- **relationships** `object` (required) — JSON:API relationship pointers as {id,type} stubs. Not materialized — follow a pointer by calling that resource's own get tool (e.g. type 'prospect' -> get-matter, 'contact' -> get-contact, 'user' -> get-user).
  - **notable** `object | null` (required) — Pointer to the record this note is attached to (e.g. type 'prospect', 'contact', 'company'); null when unreported
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
  - **createdBy** `object | null` (required) — Pointer to the user who authored the note (type 'user'); null when unset or unreported
    - **id** `string` (required) — ID of the referenced Lawmatics record
    - **type** `string` (required) — JSON:API record class of the reference (e.g. "user", "contact", "prospect", "firm"); resolve it by calling that resource's own get/find tool — this pointer is not materialized
