-
Notifications
You must be signed in to change notification settings - Fork 0
API Documentation
Michael Mihalchik edited this page May 4, 2021
·
2 revisions
- A logged in user can get a random interview question
- GET
api/questions
- A logged in user can get feedback based on their answer to the interview question
- GET
api/feedback/<feedback_id>(Getting the feedback from the backend)- POST
api/feedback/(Sends back the answer information to be stored in the Feedback table)- DELETE
api/feedback/<feedback_id>( Deleting the feedback and the associated information)
- The video from the answer needs to be sent and stored
- GET
api/video/<video_id>(Grabs the link for the video)- POST
api/video/<question_id>(Sends the video to the backend for storage using AWS)