in reply to Re^3: Getting specific field values from JIRA rest/api output using JSON::XS and array of hashes
in thread Getting specific field values from JIRA rest/api output using JSON::XS and array of hashes

Thanks a lot poj. Worked like a charm. Missed the '->' between $perl and {'issues'} and that made a big difference. Why $perl{'issues'}[0]{'fields'} will not work?
  • Comment on Re^4: Getting specific field values from JIRA rest/api output using JSON::XS and array of hashes

Replies are listed 'Best First'.
Re^5: Getting specific field values from JIRA rest/api output using JSON::XS and array of hashes
by Mr. Muskrat (Canon) on Jan 20, 2016 at 20:32 UTC

    Because here you are accessing items in the hash reference named $perl and not in a hash named %perl.