-
-
19 Aug 2013 06:46:14 UTC
- Distribution: API-Plesk
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (1)
- Testers (656 / 345 / 0)
- Kwalitee
Bus factor: 0- 64.03% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (21.7KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Carp
- Data::Dumper
- HTTP::Request
- LWP::UserAgent
- Module::Build
- XML::Fast
- version
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
API::Plesk::Customer - Managing customer accounts.
SYNOPSIS
$api = API::Plesk->new(...); $response = $api->customer->add(..); $response = $api->customer->get(..); $response = $api->customer->set(..); $response = $api->customer->del(..);
DESCRIPTION
Module manage customer accounts.
METHODS
- add(%params)
-
Method adds customer to Plesk Panel.
%params = ( # required gen_info => { pname => 'Mike', login => 'mike', passwd => '12345', ... } );
- get(%params)
-
Method gets customer data.
%params = ( filter => {...} );
- set(%params)
-
Method sets customer data.
%params = ( filter => {...}, gen_info => {...} );
- del(%params)
-
Method deletes customer from Plesk Panel.
%params = ( filter => {...} );
AUTHOR
Ivan Sokolov <lt>ivsokolov@cpan.org<gt>
Module Install Instructions
To install API::Plesk, copy and paste the appropriate command in to your terminal.
cpanm API::Plesk
perl -MCPAN -e shell install API::Plesk
For more information on module installation, please visit the detailed CPAN module installation guide.