Python
import requests url = "http://api/apollo/license/check" response = requests.get(url) print(response.text)
true
successful operation
The response is of type boolean.
boolean
Was this page helpful?