How to get all the Reviews that I have written and their corresponding Submissions
OpenReview does not currently provide an official document that certifies that a Reviewer has participated in the review process of a conference. However, it is still possible to retrieve the publicreviews and publicsubmissions that the Reviewer reviewed using the python client from OpenReview.
result = openreview.tools.get_own_reviews(client)
# Result is a list of dictionaries that have the following schema
# {
# 'submission_title': <Submission title>,
# 'submission_link': <Link to submission>,
# 'review_link': <Link to review>
# }