0

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

Prayag
  • 65
  • 8

1 Answers1

0

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

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265