• The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
  • Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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