• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Problems Creating Email Accounts through Plesk RPC API

D

danmason

Guest
Hi,

I am trying to create a new email account through the plesk api. I am using the php curl script found in the SDK Documentation with the following xml packet:



<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<packet version="1.4.0.0">

<mail>

<create>

<filter>

<domain_id>1</domain_id>

<mailname>

<name>bfischer</name>

<cp_access>

<enabled>true</enabled>

</cp_access>

<mailbox>

<enabled>true</enabled>

<quota>10485760</quota>

</mailbox>

<alias>bob</alias>

<antivir>true</antivir>

<permissions>

<cp_access>true</cp_access>

<manage_drweb>true</manage_drweb>

<manage_spamfilter>true</manage_spamfilter>

</permissions>

</mailname>

</filter>

</create>

</mail>


</packet>



---- But I am ending up with an error:

error 1002 Parser failure. Unknown operator: mail *



any help would be appreciated as I have been stumped by this for days!!!!
 
Back
Top