WordPress: Installations
Check if WordPress installations are valid
Check whether one or more WordPress installations are valid and working correctly. Detects broken installations caused by missing files, broken plugins, themes and similar issues.
Provide the WordPress installation (software) identifiers in the body. They can be obtained from GET /api/hosting/v1/wordpress/installations (the id field).
post/api/hosting/v1/accounts/{username}/wordpress/installations/check-is-valid
Path parameters
usernamestring required
Example:u123456789
Request body
Example request
{
"software_ids": [
"123",
"456"
]
}Response
Success response
Example response
[
{
"software_id": "123",
"is_valid": true
}
]