Return WordPress site information

This function retrieves the installation status and detailed information of the WordPress site for cPanel user's primary domain.

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/WordPressSite/retrieve
Request samples
uapi --output=jsonpretty \
  --user=username \
  WordPressSite \
  retrieve
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "retrieve",
  • "module": "WordPressSite",
  • "result": {
    • "data": [
      • {
        • "details": null,
        • "install_status": "in progress"
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}