Python
import requests url = "https://{FUSION HOST}/api/index-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 Index Pipelines 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
OK
starting
ok
warning
error
shutdown
The service node.
Service status details.
Show child attributes
Was this page helpful?