GET/users/{userId}/ainote/notes/{noteId}
AiNote ユーザーのノートを取得する。
注意
2026年8月下旬以降に生成したAI要約データは、summary プロパティに含まれません。
summary プロパティは将来の廃止を予定しています。
今後は summaries プロパティを利用してください。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
ainote
ainote.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | ユーザー ID required |
| noteId | string | ノート ID required example : 0b7ab87a-134b-482a-83a2-6267131972ean |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| noteId | string | ノート ID |
| workspaceId | string | ワークスペース ID |
| userId | string | ノート作成者のユーザー ID |
| title | string | ノート名 |
| createdTime | string | ノートの作成日時 (YYYY-MM-DDThh:mm:ssTZD) |
| updatedTime | string | ノートの更新日時 (YYYY-MM-DDThh:mm:ssTZD) |
| recognitionLanguage | string | 認識言語
Allowed values : ja, ko, en, zh-cn, zh-tw |
| audioDuration | integer | 録音の長さ (単位 : ミリ秒) |
| attendees | array (Attendee) | 参加者リスト |
| scripts | array (Script) | 音声記録 |
| summary | 要約情報
| |
| summaries | array (SummaryItem) | 要約リスト
required |
| Property | Type | Description |
|---|---|---|
| attendeeId | string | 参加者 ID |
| userId | string | ユーザー ID nullable : true |
| attendeeName | string | 参加者の名前 |
| Property | Type | Description |
|---|---|---|
| blockId | string | 音声記録のブロック ID |
| text | string | テキスト本文 |
| attendeeId | string | 発話者の参加者 ID nullable : true |
| attendeeName | string | 発話者の名前 nullable : true |
| startOffset | integer | 開始時間 (単位: ミリ秒) |
| endOffset | integer | 終了時間 (単位: ミリ秒) |
| Property | Type | Description |
|---|---|---|
| summaryId | string | 要約 ID |
| summaryType | string | 要約の種類
Allowed values : AI, TEMPLATE, TIMELINE |
| summaryName | string | 要約の名前 |
| content | string | 要約内容 (マークダウン形式) |
| createdTime | string | 要約の生成日時 (YYYY-MM-DDThh:mm:ssTZD) |
| updatedTime | string | 要約の更新日時 (YYYY-MM-DDThh:mm:ssTZD) |
Example
1{2 "noteId": "0b7ab87a-134b-482a-83a2-6267131972ean",3 "userId": "92d6973e-8960-482b-186d-03206fd78512",4 "workspaceId": "SA000000000d000000000",5 "createdTime": "2025-03-01T10:00:00+09:00",6 "updatedTime": "2025-03-01T10:00:00+09:00",7 "title": "新しいノート",8 "recognitionLanguage": "ja",9 "audioDuration": 54120,10 "attendees": [11 {12 "attendeeId": "qZjXW25VL7jYVf922u4rDJa",13 "userId": "92d6973e-8960-482b-186d-03206fd78512",14 "attendeeName": "担当者"15 }16 ],17 "scripts": [18 {19 "blockId": "BiD4Y8xdpSLhhKPN6rFSjmb",20 "text": "はじめまして。私はAiNoteの担当者です。\n気になることがあれば気軽に聞いてください。",21 "attendeeId": "qZjXW25VL7jYVf922u4rDJa",22 "attendeeName": "担当者",23 "startOffset": 0,24 "endOffset": 787025 }26 ],27 "summaries": [28 {29 "summaryId": "7kWc9RM2gRZSSN7rFqoX40u",30 "summaryType": "AI",31 "summaryName": "AI 要約",32 "content": "## AiNoteの紹介\n- AiNoteは、会議の音声を自動で文字起こし・要約・共有できるAI議事録サービスです。",33 "createdTime": "2025-03-01T10:00:00+09:00",34 "updatedTime": "2025-03-01T10:00:00+09:00"35 }36 ]37}