Skip to main content
POST
/
api
/
spaces
/
{spaceId}
/
computers
/
register
cURL
curl --request POST \
  --url https://api.kazzle.app/api/spaces/{spaceId}/computers/register \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "platform": "<string>",
  "label": "<string>",
  "deviceId": "<string>",
  "config": {
    "canRunProcesses": true,
    "terminals": {
      "show": true,
      "canCreate": true
    },
    "browsers": {
      "show": true,
      "canConnect": true
    },
    "desktopControl": {
      "show": true,
      "canEnable": true
    }
  }
}
'

Authorizations

Authorization
string
header
required

Better Auth JWT token

Path Parameters

spaceId
string
required

Body

application/json
platform
string
required
label
string
required
deviceId
string
required
config
object