NAME
WebService::Backlog - Perl interface to Backlog.
SYNOPSIS
use WebService::Backlog;
my $backlog = WebService::Backlog->new(
space => 'yourspaceid',
username => 'username',
password => 'password'
);
# get your projects.
my $projects = $backlog->getProjects; # List of objects (WebService::Backlog::Project)
for my $project (@{$project}) {
print $project->name . "\n";
}
# get assigned issues.
my $issues = $backlog->findIssue({
projectId => 1, # your project id.
assignerId => 2, # your user id.
});
# and more ...
DESCRIPTION
WebService::Backlog provides interface to Backlog. Backlog is a web based project collaboration tool.
For more information on Backlog, visit the Backlog website. http://www.backlog.jp/
METHODS
new
getProjects
getProject
getComponents
getVersions
getUsers
getIssue
getComments
countIssue
findIssue
createIssue
updateIssue
switchStatus
AUTHOR
Ryuzo Yamamoto <yamamoto@nulab.co.jp>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SEE ALSO
Backlog : http://www.backlog.jp/
Backlog API : http://www.backlog.jp/api/
Source code : http://github.com/dragon3/webservice-backlog/tree/master git://github.com/dragon3/webservice-backlog.git