The following request packet creates a backup task which instructs Plesk to perform a customer-level backup (without splitting) of the customer account with ID 18.
<packet version="1.6.0.0">
<backup-manager>
<backup-customer>
<customer-id>18</customer-id>
<local/>
<description>Standard weekly backup</description>
<split-size>0</split-size>
</backup-customer>
</backup-manager>
</packet>
A positive response from the server can look as follows:
<packet version="1.6.0.0">
<backup-manager>
<backup-customer>
<result>
<status>ok</status>
<task-id>2</task-id>
</result>
</backup-customer>
</backup-manager>
</packet>
If the customer account was not found on the server, the response looks as follows:
<packet version="1.6.0.0">
<backup-manager>
<backup-customer>
<result>
<status>error</status>
<errcode>1013</errcode>
<errtext>client does not exist.</errtext>
</result>
</backup-customer>
</backup-manager>
</packet>