sohm22 / quizapp

Take a Quiz
https://quizit-master.netlify.app/
1 stars 0 forks source link

specific question is fetched with id #5

Closed sohm22 closed 3 months ago

sohm22 commented 3 months ago

added below endpoint GET /question/{id}

AbhijeetSakhalkar commented 3 months ago

Endpoints according to standards

  1. Get all GET: /questions

  2. create POST: /questions

  3. get, updatem patch and delete by id GET/PUT/PATCH/DELETE: /questions/{id}

Sample link to refer (which I try to follow)