메인 콘텐츠로 건너뛰기
GET
/
v1
/
external
/
notes
/
{noteGuid}
/
summaries
List Note Summaries
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"
    }
  ]
}

인증

Authorization
string
header
필수

API key in format {id}.{secret}

경로 매개변수

noteGuid
string
필수

Note GUID

응답

List of summaries

Response containing list of note summaries

content
object[]
필수

Array of summaries

totalSize
integer

Total number of summaries

예시:

3