Return the service health state.
GET
/healthz
const url = 'https://api.dev.iot-sens.schlossers.at/healthz';const options = {method: 'GET'};
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://api.dev.iot-sens.schlossers.at/healthzResponses
Section titled “Responses”The service process is alive.
Media typeapplication/json
object
status
required
string
service
required
string
timestamp
required
string format: date-time
correlationId
required
string
Example
{ "status": "ok"}