curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/summaries \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 123,
"template": {
"id": 1,
"title": "One-Pager"
},
"locale": "ko_KR",
"createdAt": "2025-12-12T12:00:00Z"
}
]
}List all summaries generated for a specific note. Returns summary metadata without content.
To retrieve the full summary content, use the Get Note Summary endpoint.
See Template Based Documents for more details.
curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/summaries \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": 123,
"template": {
"id": 1,
"title": "One-Pager"
},
"locale": "ko_KR",
"createdAt": "2025-12-12T12:00:00Z"
}
]
}