API-MailboxOrg
    
    
  
  
  
view release on metacpan or search on metacpan
lib/API/MailboxOrg/APIBase.pm view on Meta::CPAN
        $api->base_uri;
    my $tx = $api->client->post(
        $uri,
        \%header,
        json => $rpc_data,
    );
    my $response = $tx->res;
    if ( $tx->error ) {
        carp $tx->error->{message};
        return;
    }
    my $data = $response->json;
    if ( $data->{error} ) {
        carp $data->{error}->{message};
        return;
    }
    return $data->{result};
}
1;
__END__
( run in 0.375 second using v1.01-cache-2.11-cpan-c333fce770f )