├── .gitignore ├── LICENSE ├── README.md ├── config.ini.sample ├── hooks.php ├── lang └── english.php ├── lib └── Plesk │ ├── Api.php │ ├── Config.php │ ├── Loader.php │ ├── Manager │ ├── Base.php │ ├── V1000.php │ ├── V1630.php │ ├── V1632.php │ ├── V1635.php │ ├── V1640.php │ ├── V1660.php │ └── V1670.php │ ├── Object │ ├── Addon.php │ ├── Customer.php │ ├── Ip.php │ ├── ResellerPlan.php │ └── Webspace.php │ ├── Registry.php │ ├── Translate.php │ └── Utils.php ├── plesk.php └── templates └── api ├── 1.0.0.0 ├── customer_add.tpl ├── customer_del.tpl ├── customer_get_by_login.tpl ├── customer_ippool_add_ip.tpl ├── customer_set_password.tpl ├── domain_usage_get_by_name.tpl ├── domains_get.tpl ├── ip_get.tpl ├── reseller_set_password.tpl ├── server_getProtos.tpl ├── webspace_add.tpl ├── webspace_del.tpl ├── webspace_get_by_name.tpl ├── webspace_set_ip.tpl ├── webspace_set_password.tpl ├── webspace_set_status.tpl ├── webspaces_get.tpl └── webspaces_get_by_owner_id.tpl ├── 1.6.3.0 ├── certificate_generate.tpl ├── certificate_install.tpl ├── customer_add.tpl ├── customer_del.tpl ├── customer_get_by_external_id.tpl ├── customer_get_by_login.tpl ├── customer_set_password.tpl ├── dns_record_delete.tpl ├── dns_record_retrieve.tpl ├── mx_record_create.tpl ├── resellerPlan_get.tpl ├── reseller_add.tpl ├── reseller_del.tpl ├── reseller_get_by_external_id.tpl ├── reseller_get_by_login.tpl ├── reseller_get_usage_by_login.tpl ├── reseller_plan_get_by_name.tpl ├── reseller_set_password.tpl ├── reseller_set_status.tpl ├── service_plan_addon_get_by_guid.tpl ├── service_plan_addon_get_by_name.tpl ├── service_plan_get.tpl ├── service_plan_get_by_guid.tpl ├── service_plan_get_by_name.tpl ├── switch_reseller_plan.tpl ├── switch_subscription.tpl ├── webspace_add.tpl ├── webspace_add_subscription.tpl ├── webspace_del.tpl ├── webspace_get_by_name.tpl ├── webspace_remove_subscription.tpl ├── webspace_set_ip.tpl ├── webspace_subscriptions_get_by_name.tpl ├── webspace_usage_get_by_name.tpl ├── webspaces_get.tpl └── webspaces_get_by_owner_id.tpl ├── 1.6.3.2 ├── ip_get.tpl ├── service_plan_addon_get_by_guid.tpl ├── service_plan_addon_get_by_name.tpl ├── service_plan_get_by_guid.tpl ├── webspace_add.tpl ├── webspace_add_subscription.tpl ├── webspace_get_by_name.tpl ├── webspace_remove_subscription.tpl ├── webspace_set_ip.tpl ├── webspace_subscriptions_get_by_name.tpl ├── webspace_usage_get_by_name.tpl └── webspaces_get.tpl ├── 1.6.3.5 ├── customer_get_by_external_id.tpl ├── customer_get_by_login.tpl ├── reseller_get_by_external_id.tpl ├── reseller_get_by_login.tpl └── session_create.tpl ├── 1.6.4.0 └── webspace_usage_get_by_name.tpl ├── 1.6.6.0 ├── customer_add.tpl └── reseller_add.tpl └── 1.6.7.0 ├── certificate_generate.tpl ├── certificate_install.tpl ├── customer_get_by_external_id.tpl ├── customer_get_by_login.tpl ├── reseller_get_by_external_id.tpl └── reseller_get_by_login.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/config.ini.sample -------------------------------------------------------------------------------- /hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/hooks.php -------------------------------------------------------------------------------- /lang/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lang/english.php -------------------------------------------------------------------------------- /lib/Plesk/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Api.php -------------------------------------------------------------------------------- /lib/Plesk/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Config.php -------------------------------------------------------------------------------- /lib/Plesk/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Loader.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/Base.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1000.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1000.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1630.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1630.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1632.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1632.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1635.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1635.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1640.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1640.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1660.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1660.php -------------------------------------------------------------------------------- /lib/Plesk/Manager/V1670.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Manager/V1670.php -------------------------------------------------------------------------------- /lib/Plesk/Object/Addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Object/Addon.php -------------------------------------------------------------------------------- /lib/Plesk/Object/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Object/Customer.php -------------------------------------------------------------------------------- /lib/Plesk/Object/Ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Object/Ip.php -------------------------------------------------------------------------------- /lib/Plesk/Object/ResellerPlan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Object/ResellerPlan.php -------------------------------------------------------------------------------- /lib/Plesk/Object/Webspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Object/Webspace.php -------------------------------------------------------------------------------- /lib/Plesk/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Registry.php -------------------------------------------------------------------------------- /lib/Plesk/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Translate.php -------------------------------------------------------------------------------- /lib/Plesk/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/lib/Plesk/Utils.php -------------------------------------------------------------------------------- /plesk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/plesk.php -------------------------------------------------------------------------------- /templates/api/1.0.0.0/customer_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/customer_add.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/customer_del.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/customer_del.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/customer_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/customer_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/customer_ippool_add_ip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/customer_ippool_add_ip.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/customer_set_password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/customer_set_password.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/domain_usage_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/domain_usage_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/domains_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/domains_get.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/ip_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/ip_get.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/reseller_set_password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/reseller_set_password.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/server_getProtos.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/server_getProtos.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_add.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_del.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_del.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_set_ip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_set_ip.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_set_password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_set_password.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspace_set_status.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspace_set_status.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspaces_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspaces_get.tpl -------------------------------------------------------------------------------- /templates/api/1.0.0.0/webspaces_get_by_owner_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.0.0.0/webspaces_get_by_owner_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/certificate_generate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/certificate_generate.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/certificate_install.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/certificate_install.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/customer_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/customer_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/customer_del.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/customer_del.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/customer_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/customer_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/customer_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/customer_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/customer_set_password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/customer_set_password.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/dns_record_delete.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/dns_record_delete.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/dns_record_retrieve.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/dns_record_retrieve.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/mx_record_create.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/mx_record_create.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/resellerPlan_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/resellerPlan_get.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_del.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_del.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_get_usage_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_get_usage_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_plan_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_plan_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_set_password.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_set_password.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/reseller_set_status.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/reseller_set_status.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/service_plan_addon_get_by_guid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/service_plan_addon_get_by_guid.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/service_plan_addon_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/service_plan_addon_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/service_plan_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/service_plan_get.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/service_plan_get_by_guid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/service_plan_get_by_guid.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/service_plan_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/service_plan_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/switch_reseller_plan.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/switch_reseller_plan.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/switch_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/switch_subscription.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_add_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_add_subscription.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_del.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_del.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_remove_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_remove_subscription.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_set_ip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_set_ip.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_subscriptions_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_subscriptions_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspace_usage_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspace_usage_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspaces_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspaces_get.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.0/webspaces_get_by_owner_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.0/webspaces_get_by_owner_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/ip_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/ip_get.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/service_plan_addon_get_by_guid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/service_plan_addon_get_by_guid.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/service_plan_addon_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/service_plan_addon_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/service_plan_get_by_guid.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/service_plan_get_by_guid.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_add_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_add_subscription.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_remove_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_remove_subscription.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_set_ip.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_set_ip.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_subscriptions_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_subscriptions_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspace_usage_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspace_usage_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.2/webspaces_get.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.2/webspaces_get.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.5/customer_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.5/customer_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.5/customer_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.5/customer_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.5/reseller_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.5/reseller_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.5/reseller_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.5/reseller_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.3.5/session_create.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.3.5/session_create.tpl -------------------------------------------------------------------------------- /templates/api/1.6.4.0/webspace_usage_get_by_name.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.4.0/webspace_usage_get_by_name.tpl -------------------------------------------------------------------------------- /templates/api/1.6.6.0/customer_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.6.0/customer_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.6.0/reseller_add.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.6.0/reseller_add.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/certificate_generate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/certificate_generate.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/certificate_install.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/certificate_install.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/customer_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/customer_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/customer_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/customer_get_by_login.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/reseller_get_by_external_id.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/reseller_get_by_external_id.tpl -------------------------------------------------------------------------------- /templates/api/1.6.7.0/reseller_get_by_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plesk/whmcs-plugin/HEAD/templates/api/1.6.7.0/reseller_get_by_login.tpl --------------------------------------------------------------------------------