How to Get All Registration Notes
If you enabled the Registration Stage for reviewers and/or area chairs, you will be able to programmatically query these registration notes using the python client.
Instantiate your OpenReview client
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
orArea_Chairs
) and the name of the registration stage (by default, this isRegistration
):
{venue_id}/(Reviewers|Area_Chairs)/-/{registration_stage_name}
,
e.g., NeurIPS.cc/2023/Conference/Reviewers/-/Registration
Iterate through every note to access the note's content. You will be able to access all fields you configured for the registration stage.
PreviousHow to Get All the Reviews that I have written and their Corresponding SubmissionsNextHow to Get All Submissions
Last updated