Get Meeting Chat
get_chat_messagesFetch merged, time-ordered chat from every meeting channel, with optional transcript export.
Instructions
Meeting chat across all channels, merged and time-ordered. The chat lives on the meeting, not the recording — pass conference_key, or a recording_id whose conference_key is resolved. With save_path, writes .json + .txt and returns a compact summary instead of the messages. Returns {conference_key, channels, count, truncated_channels, messages:[{id, channel, created, author, authorLogin, isAnonymous, text, files, reactions}]}; a non-empty truncated_channels means those channels hit limit and the chat may be incomplete.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | max messages per channel (the API has no cursor beyond it). | |
| channel | No | fetch only this channel; omitted → every channel with messages. | |
| save_path | No | file or directory for the .json + .txt transcript. | |
| recording_id | No | from list_recordings; its conference_key is resolved. | |
| conference_key | No | the meeting's conference_key (from list_meetings). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |