Python
import requests url = "https://{FUSION HOST}/api/templates/query-pipelines/status" headers = {"Authorization": "Basic <encoded-value>"} response = requests.get(url, headers=headers) print(response.text)
[ { "status": "starting", "node": "<string>", "messages": [ { "date": "2023-11-07T05:31:56Z", "message": "<string>" } ] } ]
Check the status of the query pipeline template service.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Successfully retrieved the status of the query pipeline template service.
The status of the service.
starting
ok
warning
error
shutdown
The service node.
Service status details.
Show child attributes
Was this page helpful?