The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WebService::PivotalTracker::Simple - Web API client for PivotalTracker

SYNOPSIS

    use WebService::PivotalTracker::Simple;
    my $pivotal = WebService::PivotalTracker::Simple->new( token => ... );
    my $project_id = ...;
    my $story_id   = ...;
    my $response = $pivotal->get("/projects/$project_id/stories/$story_id");

DESCRIPTION

WebService::PivotalTracker::Simple is very thin API client for Pivotal Tracker.

METHODS

$instance = $class->new( token => 'your API token' )

create instance

$response_href = $self->get($end_point, $query_param_href)

call API using GET request

$response_href = $self->post($end_point, $data_href)

call API using POST request

$response_href = $self->put($end_point, $data_href)

call API using PUT request

$response_href = $self->delete($end_point)

call API using DELETE request

SEE ALSO

http://www.pivotaltracker.com/help/api/rest/v5, http://search.cpan.org/dist/WWW-PivotalTracker/, http://search.cpan.org/dist/WebService-PivotalTracker/

LICENSE

Copyright (C) Takuya Tsuchida.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Takuya Tsuchida <tsucchi@cpan.org>