Skip to content

gphat/jira-client-rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

JIRA::Client::REST - JIRA REST Client

VERSION

version 0.05

SYNOPSIS

use JIRA::Client::REST;

my $client = JIRA::Client::REST->new(
    username => 'username',
    password => 'password',
    url => 'http://jira.mycompany.com',
);
my $issue = $client->get_issue('TICKET-12');
print $issue->{fields}->{priority}->{value}->{name}."\n";

DESCRIPTION

JIRA::Client::REST is a wrapper for the JIRA REST API. It is a thin wrapper, returning decoded version of the JSON without any munging or mangling.

HEADS UP

This module is under development and some of the REST API hasn't been implemented yet.

ATTRIBUTES

password

Set/Get the password to use when connecting to JIRA.

url

Set/Get the URL for the JIRA instance.

username

Set/Get the username to use when connecting to JIRA.

METHODS

get_issue($id, $expand)

Get the issue with the supplied id. Returns a HashRef of data.

get_issue_transitions($id, $expand)

Get the transitions possible for this issue by the current user.

get_issue_votes($id, $expand)

Get voters on the issue.

get_issue_watchers($id, $expand)

Get watchers on the issue.

unvote_for_issue($id)

Remove your vote from an issue.

unwatch_issue($id, $username)

Remove a watcher from an issue.

vote_for_issue($id)

Cast your vote in favor of an issue.

watch_issue($id, $username)

Watch an issue. (Or have someone else watch it.)

AUTHOR

Cory G Watson gphat@cpan.org

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Cold Hard Code, LLC.

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

About

JIRA REST Client

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages