GET/users/{userId}/ainote/notes/{noteId}
내가 생성한 노트의 상세 정보를 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
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 : ko, en, ja, zh-cn, zh-tw, enko, jako |
| audioDuration | integer | 오디오 길이(단위: millisecond) |
| 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 | 시작 시간(단위: millisecond) |
| endOffset | integer | 종료 시간(단위: millisecond) |
| 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": "ko",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": "반갑습니다. 저는 클로바노트 담당자입니다. 궁금한 내용이 있으면 편하게 물어봐 주세요.",21 "attendeeId": "qZjXW25VL7jYVf922u4rDJa",22 "attendeeName": "담당자",23 "startOffset": 0,24 "endOffset": 787025 }26 ],27 "summary": {28 "briefSummary": "클로바노트는 대화를 기록하고 필요한 정보를 찾기 쉽게 도와주는 서비스이다.\n아이디어를 모으는 회의나 인터뷰와 같은 대화 상황에서 유용하다.",29 "paragraphSummaries": [30 {31 "paragraphSummaryId": "5rYb7PK8fPYQQL5pDonV28s",32 "title": "클로바노트 사용법 및 기능 소개",33 "contents": [34 "클로바노트는 대화 기록에 유용함"35 ]36 }37 ],38 "agendas": [39 {40 "agendaId": "3nwVHzLMMP6qWbAbvdqS9Ma",41 "content": "노트 생성 방법"42 }43 ],44 "recommendedTasks": [45 {46 "recommendedTaskId": "bmzMKWNguAaqURNVezR9TAt",47 "content": "클로바노트로 회의 녹음하기"48 }49 ]50 }51}