Python
import requests url = "http://api/apollo/system/ping" response = requests.get(url) print(response.text)
"<string>"
If the system is up, it returns ‘pong’
successful operation
The response is of type string.
string
Was this page helpful?