curl --request GET \
--url https://{FUSION HOST}/api/subscriptions/status \
--header 'Authorization: Basic <encoded-value>'[
{
"status": "starting",
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]Check the status of the Subscriptions service.
curl --request GET \
--url https://{FUSION HOST}/api/subscriptions/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?