Return all projects' monitoring results

This function returns information about the cPanel user's Site Quality Monitoring projects' most recent monitoring check results.

SecurityBasicAuth
Request
query Parameters
verbose
required
integer or null
Default: null

Whether to enable verbose output.

** Note: **

This includes information about the user's Site Quality Monitoring project's most recent results in each monitoring check subcategory.

Enum: 0 1 null
Example: verbose=1
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
post/SiteQuality/get_all_scores
Request samples
uapi --output=jsonpretty \
  --user=username \
  SiteQuality \
  get_all_scores \
  verbose=1
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "get_all_scores",
  • "module": "SiteQuality",
  • "result": {
    • "data": {
      • "scores": [
        • {
          • "system": {
            • "name": "MyProject",
            • "id": 2542
            },
          • "scores": {
            • "basic-uptime": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              },
            • "basic-performance": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              },
            • "basic-seo": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              },
            • "basic-content": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              },
            • "basic-tech": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              },
            • "basic-security": {
              • "master": {
                • "title": null,
                • "status": null,
                • "message": null,
                • "description": null,
                • "identifier": null,
                • "score": null,
                • "incidents": [ ],
                • "attributes": { }
                },
              • "sub_scores": [ ]
              }
            }
          }
        ]
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}