GET/users/{userId}/ainote/notes/{noteId}

AiNote ユーザーのノートを取得する。

注意
2026年8月下旬以降に生成したAI要約データは、summary プロパティに含まれません。
summary プロパティは将来の廃止を予定しています。
今後は summaries プロパティを利用してください。

Authorization

oauth2

Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。

Scope

ainote
ainote.read

HTTP Request

GEThttps://www.worksapis.com/v1.0/users/{userId}/ainote/notes/{noteId}

Path Parameters

ParameterTypeDescription
userId string 

ユーザー ID


required 
noteId string 

ノート ID


required
example : 0b7ab87a-134b-482a-83a2-6267131972ean 

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
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 

認識言語

  • ja: 日本語
  • ko: 韓国語
  • en: 英語
  • zh-cn: 中国語 (簡体字)
  • zh-tw: 中国語 (繁体字)

Allowed values : ja, ko, en, zh-cn, zh-tw 
audioDuration integer 

録音の長さ (単位 : ミリ秒)

 
attendees array (Attendee) 

参加者リスト

 
scripts array (Script) 

音声記録

 
summary 

要約情報

参考

  • このプロパティには、2026年8月下旬以降に生成した要約情報は含まれません。
  • このプロパティは、将来の廃止を予定しています。
  • 今後は summaries を使用してください。
 
summaries array (SummaryItem) 

要約リスト

  • 要約がない場合には空の配列を返す。

required 

Attendee

PropertyTypeDescription
attendeeId string 

参加者 ID

 
userId string 

ユーザー ID


nullable : true 
attendeeName string 

参加者の名前

 

Script

PropertyTypeDescription
blockId string 

音声記録のブロック ID

 
text string 

テキスト本文

 
attendeeId string 

発話者の参加者 ID


nullable : true 
attendeeName string 

発話者の名前


nullable : true 
startOffset integer 

開始時間 (単位: ミリ秒)

 
endOffset integer 

終了時間 (単位: ミリ秒)

 

SummaryItem

PropertyTypeDescription
summaryId string 

要約 ID

 
summaryType string 

要約の種類

  • AI: AIおまかせ要約
  • TEMPLATE: テンプレート
  • TIMELINE: 区間ごとの要約

Allowed values : AI, TEMPLATE, TIMELINE 
summaryName string 

要約の名前

 
content string 

要約内容 (マークダウン形式)

 
createdTime string 

要約の生成日時 (YYYY-MM-DDThh:mm:ssTZD)

 
updatedTime string 

要約の更新日時 (YYYY-MM-DDThh:mm:ssTZD)

 

Response Example

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}