Creating Workspaces
Create a workspace to start using CloudPirates services.
Prerequisites
- An active CloudPirates account
- Login access to the portal
Creation Steps
- Login to portal.cloudpirates.io
- Navigate to /workspace
- Click "Create Workspace" on the top right sidebar
- Enter a descriptive workspace name
- Confirm creation
Automatic Owner Role Assignment
You are automatically assigned the Owner role with full access when you create a workspace.
Multiple Workspaces
Create separate workspaces for:
- Environment Separation: Production, staging, development
- Team Isolation: Different departments or teams
- Project Separation: Different products or applications
API Reference
Create Workspace
http
POST /v1/workspaces
Authorization: Bearer <access-token>
Content-Type: application/json
{
"workspaceName": "My Workspace",
"workspaceKey": "my-workspace"
}workspaceKey is a unique, URL-safe identifier for the workspace (lowercase letters, digits, and single hyphens between segments) — it must be unique across all workspaces.
List Workspaces
http
GET /v1/workspaces
Authorization: Bearer <access-token>Full API Documentation Available
These are example requests. For complete API documentation including all parameters, response schemas, and authentication details, visit api.cloudpirates.io/docs.