• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • 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.

Suspend/Unsuspend domain API RPC

L

lolpopl

Guest
Hi,
i can't find how to suspend or unsuspend with the API RPC on PHP.
What is the XML structure?

Thanks a lot.
 
It is allowed in overusage aspect. More details in API RPC 1.6.3.4 Reference Guide.
 
So i would to setup in webspace something like



<limits>
<overuse>block</overuse>
<limit>
????????
</limit>
<limits>

but what in place of ????????? ?
If i want to immediate suspend domain without change of it's settings.
 
unable to find suspend / unsuspend option

I too am interested in a solution. Concerns plesk 10.4.4 Update #12 and API version 1.6.3. You should be able to use the API to just suspend a user or a domain. As an alternative set allowed traffic to zero?

Rik
 
set traffic to zero?

to suspend a domain account this should work, setting traffic to zero? OK is returned but domain status unlimited traffic does not help. What am I missing here?

<packet version="1.6.3.0">
<webspace>
<set_traffic>
<dom_id>55</dom_id>
<date>2012-01-18</date>
<smtp_in>0</smtp_in>
<smtp_out>0</smtp_out>
<pop3_imap_in>0</pop3_imap_in>
<pop3_imap_out>0</pop3_imap_out>
</set_traffic>
</webspace>
</packet>
<?xml version="1.0" encoding="UTF-8"?>
<packet version="1.6.3.0">
<webspace>
<set_traffic>
<result>
<status>ok</status>
<id>55</id>
</result>
</set_traffic>
</webspace>
</packet>
 
Back
Top