フォルダ一覧(フラット)

GET/chat-rooms/:roomId/folders

ルームのフォルダをページネーションなしでフラットに返します。移動先の選択 UI などでツリーを組み立てるのに使います。

認証要ログイン

パスパラメータ

roomIdstring必須

チャットルーム ID。

リクエスト
curl https://api.4s.link/chat-rooms/ROOM_ID/folders \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"folders": [
{ "type": "folder", "id": "fd1a2b3c-...", "name": "議事録", "parentId": null, "createdAt": "2026-08-29T00:00:00.000Z" }
]
}