Skip to main content
GET
Read Note

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

note_id
string<uuid>
required

UUID of the note to read. Use an ID returned by create/list/search. The caller must be able to access this note.

Response

200 - application/json

OK

attachment_metadata
NoteAttachmentMetadataResponseSchema · object[]
required

Compact metadata for PDF and image attachments embedded in this note. Use attachment_id with GET /v2/note-attachments/{attachment_id}/download-url.

audio_recording_ids
string<uuid>[]
required

Audio Recording UUIDs currently associated with this note.

collection_ids
string<uuid>[]
required

Collection UUIDs currently associated with this note.

content
string
required

Full markdown content stored for the note.

created_at
string<date-time>
required

Creation timestamp for the note in ISO 8601 format.

id
string<uuid>
required

UUID of the requested note.

request_id
string
required

Identifier for this API request. Useful for tracing and support.

title
string
required

Current note title.

trashed_at
string<date-time> | null
required

Timestamp for when the note was moved to trash, or null when the note is active. Trashed notes are still returned by GET /v2/notes/{note_id}.

updated_at
string<date-time>
required

Last modification timestamp for the note in ISO 8601 format.

version
integer
required

Current note content document version.