turbot/zoom

GitHub
steampipe plugin install zoomsteampipe plugin install zoom

Table: zoom_group

Query information about groups in the Zoom account.

Examples

List all groups

select
*
from
zoom_group
order by
name

Get a group by ID

select
*
from
zoom_group
where
id = 'siPuH6LvQfKSkeaVyxZCRQ'

Groups with no members (to clean up?)

select
*
from
zoom_group
where
total_members = 0

.inspect zoom_group

A Zoom account can have one or more groups.

NameTypeDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_idtextZoom account ID.
idtextGroup ID.
nametextGroup name.
total_membersbigintTotal number of members in the group.