Return all WordPress sites' backup status

This function checks for any active WordPress® site backups on the cPanel account.

Note:

You must install the WordPress Manager cPanel plugin to access this API function.

SecurityBasicAuth
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
get/WordPressBackup/any_running
Request samples
uapi --output=jsonpretty \
  --user=username \
  WordPressBackup \
  any_running
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "any_running",
  • "module": "WordPressBackup",
  • "result": {
    • "data": {
      • "any_running": 0,
      • "sites": [
        • {
          • "id": "null",
          • "site": "example.com",
          • "type": "backup"
          }
        ],
      • "sse_url": "/sse/WordPressBackup"
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}