GET/users/{userId}/ainote/notes/{noteId}
AiNote ユーザーのノートを取得する。
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 | object (summary) | nullable : true |
| 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 |
|---|---|---|
| briefSummary | string | 全体の要約 |
| paragraphSummaries | array (ParagraphSummary) | 区間ごとの要約 |
| agendas | array (Agenda) | 主要トピック |
| recommendedTasks | array (RecommendedTask) | 次のステップ |
| Property | Type | Description |
|---|---|---|
| paragraphSummaryId | string | 区間ごとの要約 ID |
| title | string | 区間ごとの要約のタイトル |
| contents | array (string) | 区間ごとの要約 |
| Property | Type | Description |
|---|---|---|
| agendaId | string | 主要トピック ID |
| content | string | 主要トピック |
| Property | Type | Description |
|---|---|---|
| recommendedTaskId | string | 次のステップ ID |
| content | string | 次のステップの内容 |
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 "summary": {28 "briefSummary": "AiNoteは、AI議事録作成ツールです。会議の議事録を自動的に作成、共有できます。",29 "paragraphSummaries": [30 {31 "paragraphSummaryId": "5rYb7PK8fPYQQL5pDonV28s",32 "title": "AiNoteの使い方と機能の紹介",33 "contents": [34 "AiNoteは会議の記録に活用できる"35 ]36 }37 ],38 "agendas": [39 {40 "agendaId": "3nwVHzLMMP6qWbAbvdqS9Ma",41 "content": "ノートの作成方法"42 }43 ],44 "recommendedTasks": [45 {46 "recommendedTaskId": "bmzMKWNguAaqURNVezR9TAt",47 "content": "AiNoteで会議を録音する"48 }49 ]50 }51}