Your own application

If you want to call the job monitor endpoint directly from within your application, you can do so with any built-in module or third-party library that can make HTTP requests.

Below you will find simplified examples in a number of programming languages.

Python

import urllib.request

urllib.request.urlopen('https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ')

# or with the requests library
import requests

requests.get('https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ')

JavaScript/NodeJS

const https = require('https')

const req = https.request({
  hostname: 'ping.allgood.systems',
  port: 443,
  path: '/l/j/GAkmzGhsRNu-YHOCcLHmQQ',
  method: 'GET'
});

req.end();

Ruby

require 'net/http'

Net::HTTP.get URI('https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ')

PHP

$url = "https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ";
$r = file_get_contents($url);

# or with curl
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);

$r = curl_exec($curl);
curl_close($curl);

Java

import java.io.IOException;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Request {
    public static void main(String[] args) throws IOException, InterruptedException {
        HttpClient client = HttpClient.newHttpClient();

        HttpRequest request = HttpRequest.newBuilder(
                URI.create("https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ")).build();

        client.send(request, HttpResponse.BodyHandlers.discarding());
    }
}

PowerShell

Invoke-WebRequest https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ

Curl

/usr/bin/curl https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ

FileMaker

Insert from URL [ Select ; With dialog: Off ; Target: $r ; "https://ping.allgood.systems/l/j/GAkmzGhsRNu-YHOCcLHmQQ" ; Verify SSL Certificates ] 

Powered by Doctave