cURL
curl --request POST \ --url https://app.quizrise.com/api/v1/question/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "quizId": "<string>", "type": "TRUEFALSE", "difficulty": "EASY", "count": 2, "content": "<string>", "language": "<string>", "source": "TEXT", "url": "<string>" }'
{ "status": "success", "message": "<string>", "quizId": "<string>" }
Create a new question for an existing quiz from a provided content.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Questions creation initiated successfully
The response is of type object.
object