How to Get All Reviews
Venues using API V2
To get all reviews, you can do the following:
Get all submissions for your venue. You can do this by passing your venue's submission invitation into get_all_notes. You should also pass in details = "directReplies" to obtain any notes that reply to each submission or details = "replies" to get all notes (direct replies and replies of replies that are nested).
2. For each submission, add any replies with the review invitation to a list of reviews.
3. The list reviews now contains all of the reviews for your venue.
How to get review revisions
If you would also like to find the revisions for a given review, you can do so by getting the review id and then getting the edits for that review. These edits will give every edit that ultimately resulted in the final review, but may not contain the final review as is.
An example for getting the edits for a single review is below:
Venues using API V1
To get all reviews for a double-blind venue, you can do the following:
Get all submissions for your venue. You can do this by passing your venue's submission invitation into get_all_notes. You should also pass in details = "directReplies" to obtain any notes that reply to each submission.
2. For each submission, add any replies with the Official Review invitation to a list of Reviews.
3. The list reviews now contains all of the reviews for your venue.
To get all reviews for a single-blind venue, you can do the following:
Get all submissions for your venue. You can do this by passing your venue's submission invitation into get_all_notes. You should also pass in details = "directReplies" to obtain any notes that reply to each submission.
2. For each submission, add any replies with the Official Review invitation to a list of Reviews.
3. The list reviews now contains all of the reviews for your venue.
Last updated