Creates a new workspace to organize your computers.
Workspaces are containers for computers. Use them to separate different projects, environments, or teams.
Request
Unique workspace name. Must contain only letters, numbers, hyphens, and underscores.
Response
Returns the created workspace object.
Unique workspace identifier.
Number of computers (always 0 for new workspaces).
Example
curl -X POST https://www.orgo.ai/api/workspaces \
-H "Authorization: Bearer $ORGO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "production"}'
Response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "production",
"created_at": "2024-01-15T10:30:00Z",
"computer_count": 0
}
API key authentication. Get your key at orgo.ai/workspaces
Required string length: 1 - 64
Unique workspace identifier
Example:"550e8400-e29b-41d4-a716-446655440000"
Number of computers in this workspace