Fisheye Crucible API web service call only shows recently viewed items

1k Views Asked by At

I am trying to use the Fisheye Crucible API to get information regarding Crucible reviews and Jiras associated with them.

I can successfully see recently viewed reviews along with their corresponding Jira ID by calling the following API :

http://host:port/context/rest-service-fecru/recently-visited-v1/reviews/detailed

However, I don't see anything equivalent to see all the reviews and associated JIRAs. The below REST API service call does not work:

http://host:port/context/rest-service-fecru/recently-visited-v1/reviews/detailed

1

There are 1 best solutions below

0
Paul Sweatte On

Use the following to see all the reviews:

select revisions where reviewed

and put it in the query format as follows to search across repos:

http://host:port/context/rest-service-fe/search-v1/crossRepositoryQuery?query=select revisions from reviewed

or repo specific:

http://host:port/context/rest-service-fe/search-v1/query/{repository}?query=select revisions from reviewed

References