Upsource API - How to search specific ReviewId in the Project? Follow
Hi,
Any examples, how to find specific Review in the Project? For example, I know Jira Ticket ID and would like to find ReviewID created for this Jira Issue in Upsource.
Any advices - you are welcome.
Thanks
Please sign in to leave a comment.
It's can be something like this:
curl -X POST --header "Content-Type: application/json; charset=UTF" -u '<user>:<password>' https://<url>/~rpc/getReviews/ -d '{"limit":"10","projectId":"project_id"}}' --insecure
See the getReviews method for more details.
Thank you, Alex!
Yes, you are right, I've got it worked by using getReviews method.