Skip to main content
Updates the authenticated user’s settings, such as default hardware configuration for new workspaces.

Authentication

Requires a valid Bearer token.

Request Body

default_hardware
object
required
Default hardware configuration for new workspaces.
{
  "default_hardware": {
    "cpu_kind": "shared",
    "cpus": 2,
    "memory_mb": 2048,
    "volume_size_gb": 10
  }
}

Response

Returns 200 OK with the updated settings.
{
  "default_hardware": {
    "cpu_kind": "shared",
    "cpus": 2,
    "memory_mb": 2048,
    "volume_size_gb": 10,
    "gpu_kind": null
  }
}

Errors

StatusDescription
400Bad Request — invalid hardware configuration
401Unauthorized — missing or invalid token