GET/groups/{groupId}/note/posts/search
Search for posts in privileged team/group notes.
Search term (query) is required.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
group.note
group.note.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | Team/group ID required example : group127-8545-4463-603b-04d550d23bf |
| Parameter | Type | Description |
|---|---|---|
| query | string | search term required minLength : 1 maxLength : 100 example : meeting minutes |
| count | integer | Number of items in a list default : 20 minimum : 1 maximum : 40 |
| cursor | string | Cursor value for pagination example : sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| posts | array (undefined) | Search Result |
| responseMetaData | object (responseMetaData) | Metadata for pagination |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | Cursor value for pagination |
example
1{2 "posts": [3 {4 "postId": 1,5 "title": "Meeting Minutes",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": "This is meeting<mark>minutes</mark>."17 }18 ],19 "responseMetaData": {20 "nextCursor": "sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="21 }22}