As of right now, to get an event's submissions, you have to use /v2/{genre_id}/{event_id}/submissions. This is obviously not RESTful, so I propose we add a "list submissions" endpoint.
/v2/submissions?genre={genre_id}&event={event_id} where the by query can be either by=id or by=slug (default) which lets you query by event/genre ID or event/genre slug. Both event and genre will be required. If by=id, then only event will be required.
This would deprecate /v2/events/{genre_id}/{event_id}/submissions.
As of right now, to get an event's submissions, you have to use
/v2/{genre_id}/{event_id}/submissions. This is obviously not RESTful, so I propose we add a "list submissions" endpoint./v2/submissions?genre={genre_id}&event={event_id}where thebyquery can be eitherby=idorby=slug(default) which lets you query by event/genre ID or event/genre slug. Botheventandgenrewill be required. Ifby=id, then onlyeventwill be required.This would deprecate
/v2/events/{genre_id}/{event_id}/submissions.