arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

How to get all Registration Notes

If you enabled the Registration Stage for reviewers and/or area chairs, you will be able to programatically query these registration notes using the python clientarrow-up-right.

  1. Instantiate your OpenReview client

client = openreview.api.OpenReviewClient(
    baseurl='https://api2.openreview.net',
    username=<your username>,
    password=<your password>
)
  1. Get all the registration notes for your venue. The invitation is composed of your venue's id (found in the request form), the group you want to query notes for (Reviewers or Area_Chairs) and the (by default, this is Registration):

{venue_id}/(Reviewers|Area_Chairs)/-/{registration_stage_name} , e.g., NeurIPS.cc/2023/Conference/Reviewers/-/Registration

  1. Iterate through every note to access the note's content. You will be able to access all fields you configured for the registration stage.

registration_notes = client.get_all_notes(invitation='NeurIPS.cc/2023/Conference/Reviewers/-/Registration')
for note in registration_notes:
    print(note.content['expertise_confirmed']['value'])
name of the registration stagearrow-up-right