You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GET /:matchId/state : To fetch the latest match state
GET /:matchId/event?id=previousEventId : To fetch the most recent event next to the passed event (get most recent if nothing is passed)
GET /:matchId/event-series?id=previousEventId : To fetch all the events for the match sorted in descending order of time after the event with id previousEventId. (get all if nothing is passed)
POST /:matchId/event : To post a new event.
PATCH /event/:eventId : To patch a created event
DELETE /event/:eventId : To delete a created event
NOTE: Comment the schema for the three entities in the same thread.
The text was updated successfully, but these errors were encountered:
/tt
GET /:matchId/state
: To fetch the latest match stateGET /:matchId/event?id=previousEventId
: To fetch the most recent event next to the passed event (get most recent if nothing is passed)GET /:matchId/event-series?id=previousEventId
: To fetch all the events for the match sorted in descending order of time after the event with idpreviousEventId
. (get all if nothing is passed)POST /:matchId/event
: To post a new event.PATCH /event/:eventId
: To patch a created eventDELETE /event/:eventId
: To delete a created eventNOTE: Comment the schema for the three entities in the same thread.
The text was updated successfully, but these errors were encountered: