WWW::ManageWP
API Client for "ManageWP", a tool to manage Wordpress sites from one dashboard (https://managewp.com).
SYNOPSIS
This client is still in early stages, and there will be packages added
in the versions to come to add better wrapping around the ManageWP API.
Create the object: my $managewp = WWW::ManageWP->new(apiKEY => $apiKEY,
apiURL => $apiURL);
Call methods manually: my $users = $managewp->get(method =>
'users/list'); my $plans = $managewp->get(method => 'plans/list');
Call simple methods: my $users = $managewp->call->list_users;