GET/groups/{groupId}/note/posts/search

組織/グループノートを検索する。

  • 検索対象: タイトル、本文、コメント、添付ファイル名、作成者名
  • readCount、likeCount は常に 0 、enableCollaboration は常に true で返る。

Authorization

oauth2

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

Scope

group.note
group.note.read

HTTP Request

GEThttps://www.worksapis.com/v1.0/groups/{groupId}/note/posts/search

Path Parameters

ParameterTypeDescription
groupId string 

組織/グループ ID


required
example : group127-8545-4463-603b-04d550d23bf 

Query Parameters

ParameterTypeDescription
query string 
  • 大文字・小文字は区別されない。
  • URL encode して指定する

required
minLength : 1
maxLength : 100
example : 議事録 
count integer 

取得数


default : 20
minimum : 1
maximum : 40 
cursor string 

リストのカーソル値 (URL エンコードする)


example : sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== 

Header Parameters

HeadertypeDescription
Authorization string 

Bearer {token}


required 

Response

HTTP 200

OK

PropertyTypeDescription
posts array (undefined) 

検索結果リスト

 
responseMetaData object (responseMetaData) 

レスポンスのメタデータ

 

responseMetaData

PropertyTypeDescription
nextCursor string 

次のリスト取得時に使用するカーソル値

 

Response Example

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}