Links
Comment on page

Monitoring Agent and UI API's

Agent API

Send a HTTP GET request to https://[AIR_SERVER_ADDRESS]/api/app/check
The app check URL doesn't require any authentication.
A successful response would be 200 OK, and the response body will be like this:
{
"success": true
}

UI API

Send a HTTP GET request to https://[AIR_SERVER_ADDRESS]:8443/api/app/check
The app check URL doesn't require any authentication.
A successful response would be 200 OK, and the response body will be like this:
{
"success": true
}
Note: It is highly recommended to check the response body along with the HTTP status code for both the Agent and the UI API's.