Backup WordPress site

This function starts a single 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/start
Request samples
uapi --output=jsonpretty \
  --user=username \
  WordPressBackup \
  start \
  site='example.com'
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "start",
  • "module": "WordPressBackup",
  • "result": {
    • "data": {
      • "backup_id": "example.com__2018-10-10T10:53:31-0500",
      • "site": "example.com",
      • "sse_url": "/sse/WordPressBackup"
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}