How to Get All MetaReviews

To get all meta-reviews for a venue, you can do the following:

  1. 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.

submissions = client.get_all_notes(
    invitation="Your/Venue/ID/-/Submission",
    details='directReplies'
)

2. For each submission, add any replies with the Meta-Review invitation to a list of meta-reviews.

metareviews = [] 
for submission in submissions:
    metareviews = metareviews + [reply for reply in submission.details["directReplies"] if reply["invitation"].endswith("Meta_Review")]

3. The metareviews list now contains all of the meta-reviews for your venue.

Last updated