rooms_summaries
GET /rooms/:roomID/summaries/:type — List past daily or weekly summaries
List past summaries of a given type for a room, newest first. Cursor-paginated — pass cursor from the previous response to fetch the next (older) page.
Each summary covers a non-overlapping window (one per day for daily, one per week for weekly). Use this for catch-up workflows ("show me the last 7 daily summaries before I rejoin the conversation"). Same access gate as GET /rooms/:roomID.
See also: Summaries cover broad activity per window. For specific content (did anyone mention X?), POST /search/messages with q= and roomID= is faster than reading multiple summaries.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Summary type — `daily` or `weekly`. | |
| limit | No | Max results (1-50) | |
| cursor | No | Cursor from a previous response's `nextCursor`. Pass to fetch the next (older) page. | |
| roomID | Yes | Room ID |