v70

latestOpenAPI 3.0.0EUPLraw.githubusercontent.com2026-08-031426201.0 MB
Engine

Update web server settings

Updates only the web server port

put/api/engine/web-server

Request body

portnumber double required

The port on which the engine listens.

authTokenDuration'1h' | '1d' | '6h' | '3d' | '7d' | '14d' | '30d' required

Type representing an allowed authentication token duration.

Example request

{
  "port": 8080,
  "authTokenDuration": "7d"
}

Response

Engine web server settings updated successfully

needsRedirectboolean required

Whether the client needs to redirect due to a port change.

newPortnumber double nullable required

The new port to redirect to, if applicable.

Example response

{
  "needsRedirect": true,
  "newPort": 3333
}