API-Stripe

 view release on metacpan or  search on metacpan

CHANGES  view on Meta::CPAN

Changelog for API-Stripe

0.07 2015-10-12T20:41:41
 - Updated build.
 - Fixed content-type for DELETE, PATCH, POST, and PUT requests.

0.06 2015-10-11T08:10:30
 - v0.06
 - Updated build.
 - Modified the implementation style and dependencies.

0.05 2015-09-28T13:18:38
 - v0.05
 - Updated build.
 - Updated inconsistency in documentation.

README.mkdn  view on Meta::CPAN

The fetch method issues a `GET` request to the API resource represented by the
object. The arguments, expected to be a list of key/value pairs, will be
included in the request if the key is either `data` or `query`.

## update

    my $results = $stripe->update(%args);

    # or

    $stripe->PUT(%args);

The update method issues a `PUT` request to the API resource represented by
the object. The arguments, expected to be a list of key/value pairs, will be
included in the request if the key is either `data` or `query`.

# RESOURCES

## account

    $stripe->account;

The account method returns a new instance representative of the API

lib/API/Stripe.pm  view on Meta::CPAN

The fetch method issues a C<GET> request to the API resource represented by the
object. The arguments, expected to be a list of key/value pairs, will be
included in the request if the key is either C<data> or C<query>.

=head2 update

    my $results = $stripe->update(%args);

    # or

    $stripe->PUT(%args);

The update method issues a C<PUT> request to the API resource represented by
the object. The arguments, expected to be a list of key/value pairs, will be
included in the request if the key is either C<data> or C<query>.

=head1 RESOURCES

=head2 account

    $stripe->account;

The account method returns a new instance representative of the API



( run in 0.398 second using v1.01-cache-2.11-cpan-4e96b696675 )