v1

latestOpenAPI 3.1.02026-07-226875162.5 KB
Note Summary

Get Note Summary

Retrieve a specific summary with full content.

  • Default format: Markdown (text/markdown)
  • Use the format query parameter to request text/plain instead

See Template Based Documents for more details.

get/v1/external/notes/{noteGuid}/summaries/{summaryId}

Path parameters

noteGuidstring required

Note GUID

summaryIdinteger required

Summary ID from list endpoint

Query parameters

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

Content format

Response

Summary with full content

idinteger required

Summary ID

noteGuidstring required

Associated note GUID

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

Creation timestamp

updatedAtstring date-time required

Last update timestamp

Example response

{
  "id": 123,
  "noteGuid": "note-abc123-def456",
  "note": {
    "guid": "note-abc123-def456",
    "webUrl": "https://tiro.ooo/n/xQ8YKnZUPGHNB"
  },
  "template": {
    "id": 1,
    "title": "One-Pager"
  },
  "locale": "ko_KR",
  "content": {
    "type": "text/plain",
    "content": "Hello everyone, welcome to today's meeting..."
  },
  "createdAt": "2025-12-12T12:00:00Z",
  "updatedAt": "2025-12-12T12:05:00Z"
}