Stop WordPress site backup

This function cancels a WordPress® site backup.

Note:

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

SecurityBasicAuth
Request
query Parameters
required
string or string

The WordPress site's URL without the protocol prefix.

Example: site=example.com
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/cancel
Request samples
uapi --output=jsonpretty \
  --user=username \
  WordPressBackup \
  cancel \
  site='example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "cancel",
  • "module": "WordPressBackup",
  • "result": {
    • "data": {
      • "ok": 0,
      • "site": "example.com"
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}