18 lines
396 B
HTTP
18 lines
396 B
HTTP
### Send health pdate for service 'test'
|
|
POST http://127.0.0.1:5081/health/test HTTP/1.0
|
|
|
|
### Set health of service 'test' to unhealthy
|
|
PUT http://127.0.0.1:5081/health/test HTTP/1.0
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"health": false
|
|
}
|
|
|
|
### Set health of service 'test' to unhealthy
|
|
PUT https://healthr.adix.link/health/doorbell HTTP/1.0
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"health": false
|
|
} |