Meetings Commands
The webex meetings subcommand provides access to the Webex Meetings APIs for managing meetings, recordings, transcripts, and related resources.
Resource Groups
Section titled “Resource Groups”| Resource | Description |
|---|---|
chats | Meeting chat management |
closed-captions | Closed caption management |
invitees | Meeting invitee management |
meeting-polls | Meeting poll management |
meeting-qa | Meeting Q&A management |
meeting-qualities | Meeting quality metrics |
meeting-summary | Meeting summary management |
meetings | Meeting scheduling and management |
messages | Meeting message management |
participants | Meeting participant management |
people | People in meetings context |
preferences | Meeting preferences |
recording-report | Recording reports |
recordings | Recording management |
session-types | Session type configuration |
site | Meeting site management |
slido | Slido integration |
summaries | Meeting summary management |
tracking-codes | Tracking code management |
transcripts | Transcript management |
video-mesh | Video mesh management |
webhooks | Meeting webhook management |
Common Patterns
Section titled “Common Patterns”# List resourceswebex meetings <resource> list
# Get by IDwebex meetings <resource> get --id "..."
# Createwebex meetings <resource> create --body-file config.json
# Updatewebex meetings <resource> update --id "..." --body-file updated.json
# Deletewebex meetings <resource> delete --id "..."Examples
Section titled “Examples”# List meetingswebex meetings meetings list
# List recordingswebex meetings recordings list --paginate
# List transcriptswebex meetings transcripts list
# Get meeting participantswebex meetings participants list --meeting-id "MEETING_ID"
# List meeting summarieswebex meetings summaries list
# Manage webhookswebex meetings webhooks listRecording Downloads
Section titled “Recording Downloads”The recordings download command fetches a meeting recording binary (audio, video, or transcript) to a local file. It retrieves the recording metadata to obtain a temporary download link, then downloads the file.
# Download audio (MP3) — defaultwebex meetings recordings download --recording-id <id> --output meeting.mp3
# Download full video recording (MP4)webex meetings recordings download --recording-id <id> --output meeting.mp4 --type recording
# Download transcript (VTT)webex meetings recordings download --recording-id <id> --output meeting.vtt --type transcript
# Access another user's recording (admin)webex meetings recordings download --recording-id <id> --output meeting.mp3 --host-email user@example.comThe --type flag selects which temporaryDirectDownloadLinks field to use: audioDownloadLink (default), recordingDownloadLink, or transcriptDownloadLink.