Skip to main content
GET
/
system
/
ping
Query the system to see whether it is up
import requests

url = "http://api/apollo/system/ping"

response = requests.get(url)

print(response.text)
"<string>"

Response

successful operation

The response is of type string.