C#

Below is an example of making a HTTP request to healthcheck Flip ID from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("https://healthchecks-staging.flip.id/ping/your-uuid-here");
}