Python
import requests url = "https://{FUSION_HOST.com}/api/templating/zones/status" response = requests.get(url) print(response.json())
[ { "status": "ok", "node": "http://templating/settings", "messages": [ { "date": "", "message": "Additional message text." } ] } ]
Retrieve current status of the zones.
OK
The status of the zone.
"ok"
The location of the zone.
"http://templating/settings"
The message date and contents of the status of the zone.
Show child attributes
Was this page helpful?