Diagnostic Web Server APIs
Local DWS APIs

LDWS Advanced Endpoints

5min
get /v1/system/supervisor/logging/ returns the current logging level on the player the default value is info request example get /api/v1/system/supervisor/logging/ http/1 1 host {{playerip}} authorization {{digestauth}} response body status is the http response code level is the logging level on the player the higher the number, the more detail is offered name is the name of the logging level (trace, info, error, or warn) response example { "data" { "result" { "status" 200, "level" "2", "name" "info" } } } put /v1/system/supervisor/logging/ sets the logging level on the player request body level int int the integer values correspond to the logging levels 3 trace 2 info 1 warn 0 error request example put /api/v1/system/supervisor/logging/ http/1 1 host {{playerip}} authorization {{digestauth}} this is the example request body { "level" 1 } response example { "data" { "result" { "status" 200 } } }