Python
import requests url = "http://api/connectors/connectors/status" response = requests.get(url) print(response.text)
[ "<any>" ]
successful operation
The response is of type any[].
any[]
Was this page helpful?