curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/documents/{documentId} \
--header 'Authorization: Bearer <token>'{
"id": 456,
"noteGuid": "note-abc123-def456",
"template": {
"id": 1,
"title": "영업 보고서"
},
"locale": "ko_KR",
"sections": [
{
"content": {
"type": "text/plain",
"content": "회의는 신제품 출시 계획에 대해 논의했습니다..."
},
"createdAt": "2025-10-20T12:35:26Z"
},
{
"content": {
"type": "text/plain",
"content": "- 다음 주까지 견적서 발송\n- 담당자 배정"
},
"createdAt": "2025-10-20T12:35:26Z"
}
],
"createdAt": "2025-10-20T12:35:26Z",
"updatedAt": "2025-10-20T13:45:30Z"
}Retrieve a specific note document by ID.
See Template Based Documents for more details.
curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/documents/{documentId} \
--header 'Authorization: Bearer <token>'{
"id": 456,
"noteGuid": "note-abc123-def456",
"template": {
"id": 1,
"title": "영업 보고서"
},
"locale": "ko_KR",
"sections": [
{
"content": {
"type": "text/plain",
"content": "회의는 신제품 출시 계획에 대해 논의했습니다..."
},
"createdAt": "2025-10-20T12:35:26Z"
},
{
"content": {
"type": "text/plain",
"content": "- 다음 주까지 견적서 발송\n- 담당자 배정"
},
"createdAt": "2025-10-20T12:35:26Z"
}
],
"createdAt": "2025-10-20T12:35:26Z",
"updatedAt": "2025-10-20T13:45:30Z"
}API key in format {id}.{secret}
Response format
json, markdown, html Document details
Complete note document with all sections
Document ID
456
The GUID of the note this document belongs to
"note-abc123-def456"
Supported language 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 "ko_KR"
Array of document sections
Show child attributes
Generated section content
Template section ID associated with this section
12345
Section creation timestamp
"2025-10-20T12:35:26Z"
Document creation timestamp
"2025-10-20T12:35:26Z"
Document last update timestamp
"2025-10-20T13:45:30Z"