v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
WorkspaceGroupMember

Create workspace group member

This endpoint allows you to send an invitation for a sub workspace to join the admin workspace. The sub workspace will be added as a sub workspace of the admin workspace only if the sub workspace owner accepts the invitation.

Requires one of the following scopes: workspace_group_members:create, workspace_group_members:all, all:create, all:all

post/api/v2/workspace-group-members

Request body

sub_workspace_idstring uuid required

The id of the sub workspace

Example request

{
  "sub_workspace_id": "019f94cd-83f6-77f0-a39f-0b4b5bee26c9"
}

Response

The Workspace Group Member

idstring uuid required

The unique identifier of the workspace group member

admin_workspace_idstring uuid required

The id of the admin workspace

sub_workspace_idstring uuid required

The id of the sub workspace

status'pending' | 'accepted' | 'rejected' required
timestamp_createdstring date-time required
timestamp_updatedstring date-time required
sub_workspace_namestring nullable

The name of the sub workspace.

admin_workspace_namestring nullable

The name of the admin workspace.

Example response

{
  "id": "019f94cd-83f5-723f-8436-949dc55c984e",
  "admin_workspace_id": "019f94cd-83f5-723f-8436-949eeaf2e736",
  "sub_workspace_id": "019f94cd-83f6-77f0-a39f-0b4b5bee26c9",
  "status": "accepted",
  "timestamp_created": "2026-07-24T15:45:24.470Z",
  "timestamp_updated": "2026-07-24T15:45:24.470Z",
  "sub_workspace_name": "My Workspace",
  "admin_workspace_name": "My Workspace"
}