List folders

GET/chat-rooms/:roomId/folders

List every folder in the room as a flat array without pagination. Use it to build a tree for destination pickers.

AuthLogin required

Path parameters

roomIdstringrequired

Chat room ID.

Request
curl https://api.4s.link/chat-rooms/ROOM_ID/folders \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"folders": [
{ "type": "folder", "id": "fd1a2b3c-...", "name": "議事録", "parentId": null, "createdAt": "2026-08-29T00:00:00.000Z" }
]
}