This API offers a user-friendly service with robust documentation and secure endpoints, enabling seamless integration for third-party platforms to access, manage and submit applications programmatically.
API Docs[HttpGet("/v1/health-check")]
public ActionResult HealthCheck()
{
try
{
var response = new ApiResponse
{
Data = "API is up and running ✅",
Message = "Success",
Status = 200
};
return Ok(response);
}
catch (Exception err)
{
var response = new ApiResponse
{
Error = err,
Status = 404,
Message = "Sorry, record not found.",
};
return NotFound(response);
}
}