• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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