Organize multiple workspaces under one Admin workspace
A workspace group allows you to organize multiple workspaces (sub-workspaces) within a single admin workspace. This guide provides step-by-step instructions on managing sub-workspaces through the Instantly platform and via API.
โ
โThe current release only allows you to manage the workspace grouping through the dashboard. It does not allow you to see data from across different workspaces in one place.
Adding Sub-Workspaces
From the Instantly platform
Navigate to Settings > Account.
Go to the Workspace Group tab.
Click the Add sub workspace button.
Enter the workspace ID.
Click Add sub workspace to send an invitation. The workspace becomes a sub-workspace once the invitation is accepted.
Via API
Use the POST
/workspace-group-members
endpoint.Set the
sub_workspace_id
field to the workspace you want to invite.Send the request. The workspace becomes a sub-workspace once the invitation is accepted.
Removing Sub-Workspaces
From the Instantly platform
Navigate to Settings > Account.
Go to the Workspace Group tab.
Locate the sub-workspace in the Sub workspaces section.
Click the Remove button. The workspace is removed immediately.
Via API
Use the GET
/workspace-group-members
endpoint to get a list of sub-workspaces.Identify the sub-workspace to remove using the
sub_workspace_id
.Send a DELETE request to the
/workspace-group-members/:id
endpoint, replacing:id
with the appropriate ID.The sub-workspace is removed immediately.
Leaving a Workspace Group
From the Instantly platform
Navigate to Settings > Account.
Go to the Workspace Group tab.
Click the Leave workspace group button under the Admin workspace section. The workspace leaves the group immediately.
Via API
Call the GET
/workspace-group-members/admin
endpoint.Retrieve the
workspace_group_member_id
.Send a DELETE request to the
/workspace-group-members/:id
endpoint, replacing:id
with theworkspace_group_member_id
.The workspace leaves the group immediately.
Important:
A workspace cannot be both an admin and a sub-workspace simultaneously.
Only workspace owners and admins can manage sub-workspaces.
Only workspace owners can leave a workspace group.
For more details about Workspace API endpoints, check our API documentation here: https://developer.instantly.ai/workspace-group
โ