saran26 has asked for the wisdom of the Perl Monks concerning the following question:

I am trying to additional details about the reporter of the issue like his email id, full name etc. The below code returns - the reporter and the key but not the email address and full name I thought this will return the value - but it is not - please help me
$reporter = $issue->{'reporter'}->{'emailAddress'};
$results = $soap->getIssuesFromJqlSearch($login->result(),$jqlString, +2); #print "\n results : $results "; if(@{$results->result()}) { foreach my $issue (@{$results->result()}){ $issueKey = $issue->{'key'}; $reporter = $issue->{'reporter'}}

Replies are listed 'Best First'.
Re: Jira Soap Client - in perl
by Anonymous Monk on Aug 30, 2013 at 02:42 UTC
    What do the docs say?