Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Fetch Time Spent from Crucible using REST APIs

Pragati Agrawal
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 12, 2015

Hi,

I am working on review metrics and for that I have to fetch time spent on a Ticket in fisheye ticket through REST API. How can I do that.

Also, in Fisheye, i can submit time on a linked JIRA ticket. Need to fetch that as well

Regards

Pragati

1 answer

0 votes
gustavo_refosco
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 12, 2015

Hi Pragati,

I'm sorry to inform currently there is no way of getting the time spent on a review via Rest API. There's a feature request for this which you can see at https://jira.atlassian.com/browse/CRUC-6529, please feel free to vote for it, as well as commenting and adding yourself as a watcher to track its progress.

On it you can find an example to get this information directly from the database:

SELECT b.cru_proj_key,b.cru_number,c.cru_user_name,a.cru_time_spent FROM cru_review_participant a, cru_revpermaid b, cru_user c WHERE a.cru_review_id=b.cru_review_id AND a.cru_user=c.cru_user_id;

As per getting the work done in JIRA side, you would have to use a command from JIRA Rest API. For this I think you could do as follows, in order to get the time spent in a JIRA ticket linked to your Crucible review:

  1. Get the JIRA issue key associated with your review using the Crucible Rest API function /rest-service/reviews-v1/{id}/details - you'll find the JIRA issue associated with this review under the tag jiraIssueKey.
  2. Use the JIRA Rest API function /rest/api/2/issue/{issueIdOrKey}/worklog to get the work done in this JIRA issue.

Regards,

Gustavo Refosco

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events