POST
/
workspaces
Create a workspace
curl --request POST \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces \
  --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.

Query Parameters

org_id
string
required

Organization ID

Body

application/json

Workspace to create

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

Response

201
*/*

Created

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