create_collaborative_inbox_group
Creates a new Google Group configured as a Collaborative Inbox, enabling shared email management. Sets up posting permissions and adds initial members.
Instructions
Creates a new Google Group configured as a Collaborative Inbox.
Args:
group_email: The email address for the new group.
group_name: The display name for the new group.
initial_member_emails: List of email addresses to add as members.
who_can_post: Posting permission setting. Defaults to "ALL_MEMBERS_CAN_POST".
confirmed: Must be True to execute. If False, returns a preview.
GAM pattern:
1. gam create group <group_email> name <group_name>
2. gam update group <group_email> setting isArchived false whoCanPostMessage <who_can_post> enableCollaborativeInbox true
3. for each member: gam update group <group_email> add member <member_email>
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| confirmed | No | ||
| group_name | Yes | ||
| group_email | Yes | ||
| who_can_post | No | ALL_MEMBERS_CAN_POST | |
| initial_member_emails | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |