workspaces
Create a Workspace in the specified Organization
Create a new Workspace in the specified Organization.
post/v1/organizations/{organizationId}/workspaces
Path parameters
organizationIdstring required
The <code>id</code> of the Organization where you want to create the Workspace.
Request body
Example request
{
"workspaceId": "main",
"alias": "Production Environment",
"description": "Main production Workspace for customer data processing",
"tags": [
"production",
"customer-data"
]
}Response
The Workspace has been successfully created
Example response
{
"workspaceId": "main",
"leaderFQDN": "workspace-leader.example.com",
"alias": "Production Environment",
"description": "Main production Workspace for customer data processing",
"tags": [
"production",
"customer-data"
]
}