Python
import requests url = "https://{FUSION HOST}/api/nodes/hosts" response = requests.get(url) print(response.json())
[ "<string>" ]
Returns a list of hosts running endpoints.
successful operation
The response is of type string[].
string[]
Was this page helpful?