Get API health state
GEThttps://http-prj1234.api.cloud.diagrid.io/v1.0/healthz
This endpoint lets you get the health state of your Catalyst API.
Responses
- 204
- 500
app id is healthy
app id is not healthy
- python
- java
- csharp
- nodejs
- go
- REQUESTS
- HTTP.CLIENT
import requests
url = "https://http-prj1234.api.cloud.diagrid.io/v1.0/healthz"
payload = {}
headers = {
'dapr-api-token': '<API_KEY_VALUE>'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
ResponseClear