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