GET/users/{userId}/ainote/notes
AiNote ユーザーのノートのリストを取得する。
startTime と endTime の間隔は、最大で 1 年指定できる。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
ainote
ainote.read
| Parameter | Type | Description |
|---|---|---|
| userId | string | ユーザー ID required |
| Parameter | Type | Description |
|---|---|---|
| cursor | string | リストのカーソル値 (URL エンコードする) |
| orderBy | string | ソート
default : createdTime%20desc |
| count | integer | 取得数 default : 20 minimum : 1 maximum : 50 |
| startTime | string | 照会の開始日時 (形式: YYYY-MM-DDThh:mm:ssTZD)
example : 2025-03-01T10:00:00%2B09:00 |
| endTime | string | 照会の終了日時 (形式: YYYY-MM-DDThh:mm:ssTZD)
example : 2025-03-01T10:00:00%2B09:00 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| notes | array (Note) | |
| responseMetaData | object (responseMetaData) |
| Property | Type | Description |
|---|---|---|
| noteId | string | ノート ID |
| workspaceId | string | ワークスペース ID |
| userId | string | ノート作成者のユーザー ID |
| createdTime | string | ノートの作成日時 (YYYY-MM-DDThh:mm:ssTZD) |
| updatedTime | string | ノートの更新日時 (YYYY-MM-DDThh:mm:ssTZD) |
| title | string | ノート名 |
| recognitionLanguage | string | 認識言語
Allowed values : ja, ko, en, zh-cn, zh-tw |
| audioDuration | integer | 録音の長さ (単位 : ミリ秒) |
| Property | Type | Description |
|---|---|---|
| nextCursor | string |
Example
1{2 "notes": [3 {4 "noteId": "0b7ab87a-134b-482a-83a2-6267131972ean",5 "workspaceId": "SA000000000d000000000",6 "userId": "92d6973e-8960-482b-186d-03206fd78512",7 "createdTime": "2025-03-01T10:00:00+09:00",8 "updatedTime": "2025-03-01T10:00:00+09:00",9 "title": "新しいノート",10 "recognitionLanguage": "ja",11 "audioDuration": 5412012 }13 ],14 "responseMetaData": {15 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="16 }17}