skills/create-workspace/SKILL.md
# Create Workspace Create a new workspace within the organization with a specified name and display color. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces` - **Operation ID**: `createWorkspace` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces` ## Required Headers - `anthrop
npx skillsauth add naftiko/anthropic-sandbox skills/create-workspaceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Create a new workspace within the organization with a specified name and display color.
/organizations/workspacescreateWorkspaceMock server URL: http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces
anthropic-version: 2023-06-01x-api-key: {admin-api-key}Content-Type: application/json{
"name": "My New Workspace",
"display_color": "#4287f5"
}
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| name | string | Yes | Name for the new workspace |
| display_color | string | No | Hex color code for the workspace display |
curl -X POST "http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces" \
-H "anthropic-version: 2023-06-01" \
-H "x-api-key: your-admin-api-key" \
-H "Content-Type: application/json" \
-d '{"name": "My New Workspace", "display_color": "#4287f5"}'
{
"id": "wrkspc_01SomeWorkspaceId",
"type": "workspace",
"name": "My New Workspace",
"display_color": "#4287f5",
"is_default": false,
"created_at": "2024-11-07T05:31:56Z",
"archived_at": null
}
When the user asks to create a new workspace, use this operation by making a POST request to /organizations/workspaces with the workspace name and optional display color.
development
# Update Workspace Update the name or display color of an existing workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}` - **Operation ID**: `updateWorkspace` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspace_id}` ## Required Headers - `anthro
development
# Update Workspace Member Update the workspace role of a specific member within a workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}/members/{user_id}` - **Operation ID**: `updateWorkspaceMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspa
development
# Update Organization Member Update the role or other attributes of a specific user within the organization. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/users/{user_id}` - **Operation ID**: `updateOrganizationMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users/{user_id}` ## Require
development
# Update API Key Update the name or status of an existing API key. Can be used to activate or deactivate a key. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/api_keys/{api_key_id}` - **Operation ID**: `updateApiKey` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/api_keys/{api_key_id}` ## Requ