Skip to main content
GET
/
objects
/
status
Get objects service status
import requests

url = "https://{FUSION HOST}/api/objects/status"

response = requests.get(url)

print(response.json())
[
  {
    "status": "starting",
    "node": "<string>",
    "messages": [
      {
        "date": "2023-11-07T05:31:56Z",
        "message": "<string>"
      }
    ]
  }
]

Response

200 - application/json

successful operation

status
enum<string>
Available options:
starting,
ok,
warning,
error,
shutdown
node
string
messages
object[]