Skip to main content
POST
/
workspaces
Create Workspace
curl --request POST \
  --url https://api.miteos.com/workspaces \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "storage_path": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Response

Successful Response

id
string
required
name
string
required
storage_path
string
required
status
string
required