Opsview 6.8.x End of Support

With the release of Opsview 6.11.0 on February 2025, versions 6.8.x have reached their End of Support (EOS) status, according to our Support policy. This means that versions 6.8.x will no longer receive code fixes or security updates.

The documentation for version 6.8.9 and earlier versions will remain accessible for the time being, but it will no longer be updated or receive backports. We strongly recommend upgrading to the latest version of Opsview to ensure continued support and access to the latest features and security enhancements.

Response

If the request was successful, the response will be a status code of 200. If data is requested, this will be in the content in the requested format.

The response format for a single object is (in JSON format):

{
    "object" : { ... }
}

The response format for a list of items is (in JSON format):

    {
        "summary": {
            "rows": "30",
            #This is the number of rows in the response.If this equals allrows, then you have all results 
            "page": 1,
            #Current page number 
            "totalrows": "100",
            #This is the count of all the rows based on the search parameters 
            "totalpages": 4,
            #Based on the pages and the number of rows per page, this is the total number of pages 
            "allrows": "153",
            #This is the count of all rows for this datatype(restricted by user access, eg hosts)
        },
        "list": [{
                "ref": "/rest/config/servicecheck/47",
                "name": "/",
                "id": "47",
                "description": "Utilisation of / partition"
            },
            ....
        ]
    }

The object hash within a list is the same as a single object.

The value for the ref key provides a way of accessing the related object.

["Opsview On-Premises"] ["API", "Technical Reference"] "1"

Was this topic helpful?