Skip to content

Meetings Commands

The webex meetings subcommand provides access to the Webex Meetings APIs for managing meetings, recordings, transcripts, and related resources.

ResourceDescription
chatsMeeting chat management
closed-captionsClosed caption management
inviteesMeeting invitee management
meeting-pollsMeeting poll management
meeting-qaMeeting Q&A management
meeting-qualitiesMeeting quality metrics
meeting-summaryMeeting summary management
meetingsMeeting scheduling and management
messagesMeeting message management
participantsMeeting participant management
peoplePeople in meetings context
preferencesMeeting preferences
recording-reportRecording reports
recordingsRecording management
session-typesSession type configuration
siteMeeting site management
slidoSlido integration
summariesMeeting summary management
tracking-codesTracking code management
transcriptsTranscript management
video-meshVideo mesh management
webhooksMeeting webhook management
Terminal window
# List resources
webex meetings <resource> list
# Get by ID
webex meetings <resource> get --id "..."
# Create
webex meetings <resource> create --body-file config.json
# Update
webex meetings <resource> update --id "..." --body-file updated.json
# Delete
webex meetings <resource> delete --id "..."
Terminal window
# List meetings
webex meetings meetings list
# List recordings
webex meetings recordings list --paginate
# List transcripts
webex meetings transcripts list
# Get meeting participants
webex meetings participants list --meeting-id "MEETING_ID"
# List meeting summaries
webex meetings summaries list
# Manage webhooks
webex meetings webhooks list

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.

Terminal window
# Download audio (MP3) — default
webex 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.com

The --type flag selects which temporaryDirectDownloadLinks field to use: audioDownloadLink (default), recordingDownloadLink, or transcriptDownloadLink.