You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WordPress instance's configuration file location.
[optional]
addon_name
str
The WordPress cPAddon that installed the instance. * `cPanel::Blogs::WordPress` * `cPanel::Blogs::WordPressX` * `cPanel::Blogs::WordPressUnmanaged`
[optional]
addon_type
str
The WordPress instance's installation method. * `modern` — Installed by RPM-managed WordPress cPAddon. * `legacy` — Installed by legacy cPAddon. * `unmanaged` — Installed by third-party tool or the WordPress installer.
[optional]
admin_url
str
The URL to the instance's administration interface.
[optional]
admin_username
str
The administrator username the installer created at the time of installation.
[optional]
available_version
str
This return is unused.
[optional]
created_on
int
The WordPress instance's installation date.
[optional]
current_version
str
This return is unused.
[optional]
db_name
str
The WordPress instance's database name.
[optional]
db_prefix
str
The WordPress instance's database prefix.
[optional]
db_server
str
The WordPress instance's database server hostname.
[optional]
db_type
str
The WordPress instance's database type. Note `mysql` is the only possible value.
[optional]
db_username
str
The WordPress instance's database username.
[optional]
domain
str
The WordPress instance's domain.
[optional]
full_path
str
The WordPress instance's full installation path.
[optional]
homedir
str
The cPanel account's home directory.
[optional]
id
str
The WordPress instance's unique identifier.
[optional]
import_guid
str
The imported WordPress instance's unique identifier.
[optional]
imported_on
int
The WordPress instance's import date.
[optional]
initial_install_version
str
The WordPress instance's version number at installation.
[optional]
migrated_from
str
The cPAddon that the system migrated the instance from.
[optional]
migrated_on
int
The timestamp when the system migrated the instance from legacy to modern WordPress cPAddon.
[optional]
recent
int
Whether the system added the WordPress instance in the last 24 hours. * `1` — Added recently. * `0` — Added previously.
[optional]
rel_path
str
The WordPress instance's installation path. Note This function returns an empty value if the relative path is the document root.
[optional]
site_url
str
The WordPress instance's home page URL.
[optional]
Example
fromclientapi_cpanel.models.inline_response200568_result_data_instancesimportInlineResponse200568ResultDataInstances# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200568ResultDataInstances from a JSON stringinline_response200568_result_data_instances_instance=InlineResponse200568ResultDataInstances.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200568ResultDataInstances.to_json())
# convert the object into a dictinline_response200568_result_data_instances_dict=inline_response200568_result_data_instances_instance.to_dict()
# create an instance of InlineResponse200568ResultDataInstances from a dictinline_response200568_result_data_instances_from_dict=InlineResponse200568ResultDataInstances.from_dict(inline_response200568_result_data_instances_dict)