Thru.Application.Health.Check.API
You can assess the overall health of the entire application by using the following public API endpoint:
GET [[PublicApiUrl]]/api/Healthcheck/Application
(this requires the api url not the site url)
When the application is functioning properly, the API will respond with an HTTP status code of 200. However, if any component is found to be unhealthy, the API will return an HTTP status code of 503.
In either case, the response body will look like:
{
"Thru.MFT.ProcessingManager": "Healthy",
"Thru.MFT.TransferManager": "Healthy",
"Thru.MFT.SFTPS": "Healthy",
"Thru.MFT.FlowManager": "Healthy",
"Thru.MFT.Mailer": "Healthy",
"Thru.MFT.DB.Mongo": "Healthy",
"Thru.MFT.Redis": "Healthy",
"Thru.MFT.ContentAPI": "Healthy",
"Thru.MFT.Flow.API": "Healthy",
"Thru.MFT.UI.API": "Healthy",
"Thru.MFT.Databases": "Healthy",
"Thru.MFT.Audit.API": "Healthy",
"Thru.MFT.SFTPS.API": "Healthy"
}