v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0618918374.7 KB
Servers

Create

Create Server.

post/servers

Request body

namestring

The name of the server.

descriptionstring

The description of the server.

ipstring

The IP of the server.

portinteger

The port of the server.

userstring

The user of the server.

private_key_uuidstring

The UUID of the private key.

is_build_serverboolean

Is build server.

instant_validateboolean

Instant validate.

proxy_type'traefik' | 'caddy' | 'none'

The proxy type.

Example request

{
  "name": "My Server",
  "description": "My Server Description",
  "ip": "127.0.0.1",
  "port": 22,
  "user": "root",
  "private_key_uuid": "og888os",
  "proxy_type": "traefik"
}

Response

Server created.

uuidstring

The UUID of the server.

Example response

{
  "uuid": "og888os"
}