Business-Monzo
view release on metacpan or search on metacpan
lib/Business/Monzo/Client.pm view on Meta::CPAN
api_get
api_post
api_delete
api_patch
Make a request to the Monzo API:
my $data = $Client->api_get( 'location',\%params );
May return a the decoded response data as a hash/array/string depending
on the reposonse type
=cut
sub api_get {
my ( $self,$path,$params ) = @_;
return $self->_api_request( 'GET',$path,$params );
}
sub api_post {
( run in 0.290 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )