plenigo::CustomersManager - A utility class to handle customers.
use plenigo::CustomersManager; # Prepare configuration my $use_stage = 0; # set if stage system should be used my $configuration = plenigo::Configuration->new(access_token => 'ACCESS_TOKEN', use_stage => $use_stage); # Instantiate customers manager my $customers_manager = plenigo::CustomersManager->new(configuration => $configuration); # Register a new external customer my %customer_details = $customers_manager->registerCustomer('newuser@example.com', 'DE', '123456789', 'MR', 'Mike', 'Miller'); # Change email address of an exiting customer $customers_manager->editCustomer('CUSTOMER_ID', 'newmail@example.com')
plenigo::CustomersManager provides functionality to manage customers.
Register a new customer in the plenigo system.
Edit a customer in the plenigo system.
To install plenigo, copy and paste the appropriate command in to your terminal.
cpanm
cpanm plenigo
CPAN shell
perl -MCPAN -e shell install plenigo
For more information on module installation, please visit the detailed CPAN module installation guide.