Create Workspace

Create workspace in organization

Parameters

ParameterTypeRequiredDescriptionOptions
namestringRequiredName of the workspace
typestringRequiredWorkspace type: "private" (invite-only), "open" (anyone can join), "default" (org default), or "closed" (read-only)
privateopendefaultclosed
descriptionstringOptionalWorkspace 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"
}'