Team Tools
Tools for inviting workspace members, updating permissions, and removing members
This domain contains 3 tools for managing workspace members. Invites and permission management are restricted to the literal workspace owner; members can only remove themselves (leave the workspace).
invite_workspace_member sends a real email. It is good practice for your assistant to confirm the email address with you before sending the invite.
Tools
invite_workspace_member
Invites a person to a workspace by email. Existing Connfig users are added immediately (default permissions: CRM only); new users receive a real email with an invite link. Subject to the seat limit; owner only.
Key parameters:
| Parameter | Type | Required | Purpose |
|---|---|---|---|
workspace_id | string (UUID) | Yes | Workspace ID |
email | string (email) | Yes | Email address of the person to invite |
Prompt your AI like this: "Invite jane@examplecorp.com to the Berlin Sales workspace."
update_workspace_member
Updates a member's permissions, role, or domain restrictions. Permission flags: lead_gen, data_pool, crm, view_all_crms, campaigns, can_send_mail, reports, can_manage_tasks. Owner only.
The permissions object REPLACES the member's entire permission set — include every flag you want to keep.
Key parameters:
| Parameter | Type | Required | Purpose |
|---|---|---|---|
workspace_id | string (UUID) | Yes | Workspace ID |
member_user_id | string | Yes | The member's user ID (from list_workspace_members) |
permissions | object | No | Permission flags (all boolean; replaces the whole set) |
role | owner / member | No | The member's role |
allowed_domain_ids | array of numbers | No | IDs of the sending domains the member may use |
Prompt your AI like this: "Give Jane permission to send campaigns, but keep her existing CRM access."
remove_workspace_member
Removes a member from a workspace. The owner can remove anyone (except themselves); members can remove themselves (leave).
Key parameters:
| Parameter | Type | Required | Purpose |
|---|---|---|---|
workspace_id | string (UUID) | Yes | Workspace ID |
member_user_id | string | Yes | User ID of the member to remove |
Prompt your AI like this: "Remove Jane from the Berlin Sales workspace."