v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Note Document

Get Note Document

Retrieve a specific note document by ID.

See Template Based Documents for more details.

get/v1/external/notes/{noteGuid}/documents/{documentId}

Path parameters

noteGuidstring required

Note GUID

documentIdinteger required

Document ID

Query parameters

format'text/plain' | 'text/markdown'

Response format

Response

Document details

idinteger required

Document ID

noteGuidstring required

The GUID of the note this document belongs to

locale'ko_KR' | 'en_US' | 'de_DE' | 'ja_JP' | 'es_ES' | 'fr_FR' | 'id_ID' | 'vi_VN' | 'tr_TR' | 'uk_UA' | 'ru_RU' | 'hi_IN' | 'it_IT' | 'zh_CN' | 'ms_MY' | 'th_TH' | 'sv_SE' required

Supported language locale

createdAtstring date-time required

Document creation timestamp

updatedAtstring date-time required

Document last update timestamp

truncatedboolean

true when the document was emitted as part of a deep-search response and its combined section text exceeded the search budget (5,000 chars). Plain document fetches always emit false.

Example response

{
  "id": 456,
  "noteGuid": "note-abc123-def456",
  "note": {
    "guid": "note-abc123-def456",
    "webUrl": "https://tiro.ooo/n/xQ8YKnZUPGHNB"
  },
  "template": {
    "id": 1,
    "title": "영업 보고서"
  },
  "locale": "ko_KR",
  "sections": [
    {
      "content": {
        "type": "text/plain",
        "content": "Hello everyone, welcome to today's meeting..."
      },
      "createdAt": "2025-10-20T12:35:26Z"
    }
  ],
  "createdAt": "2025-10-20T12:35:26Z",
  "updatedAt": "2025-10-20T13:45:30Z"
}