Positive responses
This packet retrieved information on FTP account created with default home directory and only required settings specified within the node. For details on adding accounts, refer to the Creating FTP Accounts section.
<packet version="1.4.2.0">
<ftp-user>
<get>
<result>
<status>ok</status>
<filter-id>16</filter-id>
<id>16</id>
<name>jenny</name>
<home></home>
<quota>-1</quota>
<permissions>
<read>false</read>
<write>false</write>
</permissions>
<domain-id>1</domain-id>
</result>
</get>
</ftp-user>
</packet>
This packet retrieved information on two FTP accounts filtered by names, and information on FTP accounts existing on a domain with ID 34. The last get node in this response contains only status and filter-id nodes, which means that no FTP accounts exist on the specified domain.
<packet version="1.4.2.0">
<ftp-user>
<get>
<result>
<status>ok</status>
<filter-id>photo1</filter-id>
<id>7</id>
<name>photo1</name>
<home>/private/photoshare/Incoming</home>
<quota>104857600</quota>
<permissions>
<read>true</read>
<write>true</write>
</permissions>
<domain-id>2</domain-id>
</result>
<result>
<status>ok</status>
<filter-id>photo3</filter-id>
<id>9</id>
<name>photo3</name>
<home>/private/photoshare/Incoming</home>
<quota>0</quota>
<permissions>
<read>true</read>
<write>false</write>
</permissions>
<domain-id>2</domain-id>
</result>
</get>
<get>
<result>
<status>ok</status>
<filter-id>34</filter-id>
</result>
</get>
</ftp-user>
</packet>
Negative Responses
This packet returned error because the request packet sent to the server intended to retrieve information on FTP account with ID 88 which does not exist.
<packet version="1.4.2.0">
<ftp-user>
<get>
<result>
<status>error</status>
<errcode>1013</errcode>
<errtext>ftp-user does not exist</errtext>
<filter-id>88</filter-id>
<id>88</id>
</result>
</get>
</ftp-user>
</packet>
This packet returned error because the request packet sent to server by Plesk client intended to retrieve information on FTP account which exists on a domain belonging to another Plesk client.
<packet version="1.4.2.0">
<ftp-user>
<get>
<result>
<status>error</status>
<errcode>1006</errcode>
<errtext>Permission denied.</errtext>
<filter-id>ivanov.ru</filter-id>
</result>
</get>
</ftp-user>
</packet>