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