curl --request GET \
--url https://{FUSION HOST}/api/index-pipelines/status \
--header 'Authorization: Basic <encoded-value>'
[
{
"status": "starting",
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]
Check the status of the Index Pipelines service.
curl --request GET \
--url https://{FUSION HOST}/api/index-pipelines/status \
--header 'Authorization: Basic <encoded-value>'
[
{
"status": "starting",
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
OK
Service status.
Was this page helpful?