GET/groups/{groupId}/note/posts/search
組織/グループノートを検索する。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
group.note
group.note.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | 組織/グループ ID required example : group127-8545-4463-603b-04d550d23bf |
| Parameter | Type | Description |
|---|---|---|
| query | string |
required minLength : 1 maxLength : 100 example : 議事録 |
| count | integer | 取得数 default : 20 minimum : 1 maximum : 40 |
| cursor | string | リストのカーソル値 (URL エンコードする) example : sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| posts | array (undefined) | 検索結果リスト |
| responseMetaData | object (responseMetaData) | レスポンスのメタデータ |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 次のリスト取得時に使用するカーソル値 |
example
1{2 "posts": [3 {4 "postId": 1,5 "title": "議事録",6 "enableCollaboration": true,7 "readCount": 0,8 "commentCount": 2,9 "fileCount": 1,10 "likeCount": 0,11 "createdTime": "2026-04-20T10:30:00+09:00",12 "modifiedTime": "2026-04-21T14:15:00+09:00",13 "userId": "user7149-0ccd-433d-1eba-04f6901660dc",14 "userName": "Susan Nielsen",15 "isNotice": false,16 "snippet": "会議の<mark>議事録</mark>を共有します。"17 }18 ],19 "responseMetaData": {20 "nextCursor": "sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="21 }22}