Skip to main content
Server/admin endpoints are for deployment owners. Keep admintoken out of frontend code.

Endpoints

EndpointAuthUse
GET /server/oknoneHealth check. Returns server-up message.
POST /server/licenseadmintokenVerify license status and expiry information.
GET /server/updateadmintoken query/header behavior in handlerCheck or apply update behavior from update controller.

Health check

curl http://localhost:1337/server/ok

License

curl -X POST http://localhost:1337/server/license \
  -H "admintoken: YOUR_ADMIN_TOKEN"
The handler reads the admin token from the admintoken header.