Table: zoom_group
Query information about groups in the Zoom account.
Examples
List all groups
select *from zoom_grouporder by name
Get a group by ID
select *from zoom_groupwhere id = 'siPuH6LvQfKSkeaVyxZCRQ'
Groups with no members (to clean up?)
select *from zoom_groupwhere total_members = 0
.inspect zoom_group
A Zoom account can have one or more groups.
Name | Type | Description |
---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. |
account_id | text | Zoom account ID. |
id | text | Group ID. |
name | text | Group name. |
total_members | bigint | Total number of members in the group. |