The Taide stands for the teachers aide! It is a device supporting teachers on their daily work with students.
It is all about questions and quizzes. A teacher should be able to easily design quizzes based on questions.
| http | url | Description |
|---|---|---|
| GET | question/ | Get a list of all questions available |
| GET | questions/1 | Get question by ID. This request will return the question with ID 1. If a questionId is not available a http 404 will be returned. |
| http | url | Description |
|---|---|---|
| POST | questions/ | Post a JSON object in the body of the request. |
| DELETE | questions/1 | Delete question by ID. This request will delete the question with ID 1. Furthermore it will return the deleted object. If a questionId is not available a http 404 will be returned. |
{
"question":"a",
"questionType":"Multiple",
"questionMedia":"",
"answers" :
[
],
"a":"b"
}