HTTP health check
GET
/health/http
const url = 'https://sylve.lan:8181/api/health/http';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://sylve.lan:8181/api/health/http \ --header 'Authorization: <Authorization>'Check whether the system’s HTTP API is reachable
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK