Create Workspace
Create workspace in organization
Parameters
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
name | string | Required | Name of the workspace | |
type | string | Required | Workspace type: "private" (invite-only), "open" (anyone can join), "default" (org default), or "closed" (read-only) | privateopendefaultclosed |
description | string | Optional | Workspace description (optional) |
Examples
MCP Tool Call
{
"name": "tape_createWorkspace",
"arguments": {
"name": "example",
"type": "example",
"description": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/createWorkspace \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "example",
"type": "example",
"description": "example"
}'