v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
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

software_idsstring[] required

WordPress installation (software) identifiers to validate.

forceboolean

Force fresh validation without cache. Preferable for troubleshooting purposes.

Example request

{
  "software_ids": [
    "123",
    "456"
  ]
}

Response

Success response

software_idstring

WordPress installation (software) identifier

is_validboolean

Whether the WordPress installation is valid and working correctly

Example response

[
  {
    "software_id": "123",
    "is_valid": true
  }
]