Download reviews via API #530
Closed
Comments
That sounds like a further expansion of the submission object, which is growing quite a bit already, slowing down API responses. I'd say a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem you are facing
I would like to download all submissions together with all reviews using the API.
Possible Solution
The
/submissions
call should be extended by a query parameterwith_reviews={boolean}
which adds a fieldreviews
which is a list of objects with the following properties:name
(str): name of the reviewercomment
(str): review commentpoints
(number): number of pointsAccess should be limited to administrators of an event. If an non-admin adds
with_reviews=true
to the query string, he/she should get an error explaining that he/she is not allowed to see the reviews.Context
I want to print out small cards (A6 format using LaTeX) for the meeting of our programme selection committee. The cards should show the name of the speaker, the title and the number of reviews and the average number of points.
I am aware that admins can see all reviews if they are included in the API response even if they have submitted talks themselves. However, admins who don't act responsible are no good admins. :-)
The text was updated successfully, but these errors were encountered: