Description
This function deletes an FTP account.
Examples
LiveAPI PHP Class
$cpanel = new CPANEL(); // Connect to cPanel - only do this once.
$delete_ftpuser = $cpanel->api1('Ftp','delftp',array('user','1') ); // Call the function.
LiveAPI Perl Module
my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
my $delete_ftpuser = $cpliveapi->api1('Ftp','delftp',['user','1'] ); # Call the function.
cPanel Tag System (deprecated)
Warning:
In cPanel & WHM version 11.30 and later, cPanel tags are deprecated. This example is present in order to help developers move from the old cPanel tag system to our LiveAPI.
We strongly recommend that you only use the LiveAPI system to call the cPanel APIs.
<cpanel Module="Ftp::delftp($FORM('user','destroy'))">
Command Line
cpapi1 --user=username Ftp delftp user=user
Output (none)
This function does not return output.
Parameters
Parameter
|
Type
|
Description
|
Possible values
|
Example
|
user
|
string
|
Required
The FTP username.
|
A valid FTP username on the account.
|
user
|
destroy
|
Boolean
|
Whether to delete the FTP account's home directory.
This value defaults to 0.
|
- 1 — Delete the FTP account's home directory.
- 0 — Leave FTP user's files intact.
|
1
|
Returns
This function does not return output.