Purpose:
Creates a new workspace in the DataGOL Platform.
Workspaces help organize users, resources, and configurations within the platform.
POST /noCo/api/v2/workspaces
Requires authentication using:
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
{
"name": "string",
"description": "string"
}
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | ✅ Yes | The display name of the workspace |
| description | string | ❌ No | A brief description of the workspace (can be an empty string) |
curl -X POST https://be.datagol.ai/noCo/api/v2/workspaces \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"name": "Sales Workspace",
"description": "Workspace for sales team data"
}'
Creates a new workspace in the DataGOL Platform to organize users, resources, and configurations.