How to send messages with the python client
You can send messages through OpenReview using the python client post_message function. You will first need to install and setup the python client. Your recipients could be a list of OpenReview profile IDs, a list of email addresses, or an OpenReview group ID. The important thing is that whichever ID you use for the recipient, it has to be a member of a group you are a writer of. This property is called the parentGroup
. This is how OpenReview gives permission to organizers to send emails. If you do not know what the corresponding group of your recipient is, you can find it with the following query:
https://api2.openreview.net/groups?members=<email or profile ID>&details=writable&select=id,details.writable
This will return a JSON with the property id
and details.writable
. If a group has details.writable=true
, that group id
can be used as your parentGroup
.
If addressing the recipients in the 'message', please use the preferred name listed in the user's profile.
To send a message to all of your venue's authors, or example:
If you wanted to include a link to each author's paper in the email, you could instead iterate through each submission and send an email with the papers' authorids fields as recipients:
If you want to email a subset of reviewers in the Reviewers group, you can send messages to recipients listed in an array.
Last updated