Get Workspace
Get workspace by ID
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspace_id | number | Required | The workspace ID to retrieve |
Examples
MCP Tool Call
{
"name": "tape_getWorkspace",
"arguments": {
"workspace_id": 12345
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/tape/getWorkspace \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"workspace_id": 12345
}'