Skip to main content
GET
/
v1
/
external
/
notes
/
{noteGuid}
/
documents
List Note Documents
curl --request GET \
  --url https://api.tiro.ooo/v1/external/notes/{noteGuid}/documents \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "id": 456,
      "noteGuid": "note-abc123-def456",
      "template": {
        "id": 1,
        "title": "영업 보고서"
      },
      "locale": "ko_KR",
      "createdAt": "2025-10-20T12:35:26Z",
      "updatedAt": "2025-10-20T13:45:30Z"
    },
    {
      "id": 457,
      "noteGuid": "note-abc123-def456",
      "template": {
        "id": 1,
        "title": "영업 보고서"
      },
      "locale": "en_US",
      "createdAt": "2025-10-20T11:20:15Z",
      "updatedAt": "2025-10-20T11:20:15Z"
    }
  ],
  "totalSize": 2
}

Authorizations

Authorization
string
header
required

API key in format {id}.{secret}

Path Parameters

noteGuid
string
required

Note GUID

Query Parameters

templateId
integer<int64>

Filter by template ID

Response

List of documents

Response containing list of note documents

content
object[]
required

Array of document summaries

totalSize
integer
required

Total number of documents

Example:

5