• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

plesk 10.4.4 RPC API

R

roberthov

Guest
i'm trying to integrate the plesk rpc api and the documentation that i have found so far online is very limited.


i've tried this PDF guide or this online plesk rpc documentation

however it's VERY limited. No examples of how am i supposed to call for creating and modifying email accounts for some domain... no the example of domain is very limited... am i supposed to sniff my finger and from that figure out what attributes/xml nodes and their names are valid?

for example this example tells you how to add a domain to IP address... no example given where to specify directory where teh domain is hosted, no example given on how to specify which subscription this domain will belong to etc... how do i add/remove/modify set up forwarding etc for email accounts etc...

<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.2.0">
<domain>
<add>
<gen_setup>
<name>example.com</name>
<ip_address>192.0.2.48</ip_address>
</gen_setup>
<hosting>
<vrt_hst>
<property>
<name>ftp_login</name>
<value>fpt16se4fdf0</value>
</property> <property>
<name>ftp_password</name>
<value>qweqwe</value>
</property>
<ip_address>192.0.2.48</ip_address>
</vrt_hst> </hosting>
</add>
</domain>
</packet>
The response


the question is... where can i find proper documentation where i can see the valid properties for each procedure call etc.??? some real examples?? and no php samples please i'm doing in c# and i need valid values / nodes for the xmls that i'll submit i don't need some messy code.
 
Back
Top