PUT
/
workspaces
/
{workspace_id}
Update a workspace
curl --request PUT \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces/{workspace_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "current_user_role": "<string>",
  "name": "<string>",
  "parent_workspace_id": "<string>",
  "workspace_id": "<string>"
}'
{
  "current_user_role": "<string>",
  "name": "<string>",
  "parent_workspace_id": "<string>",
  "workspace_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

Workspace ID

Query Parameters

org_id
string
required

Organization ID

Body

application/json

Workspace to update

A workspace within an organization. All connections, notebooks, and sessions belong to a workspace.

Response

200
*/*

OK

A workspace within an organization. All connections, notebooks, and sessions belong to a workspace.