cURL
curl --request PUT \ --url https://app.quizrise.com/api/v1/quiz/{quizId}/settings \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "emailRequired": true, "nameRequired": true, "showCorrectAnswer": true, "showFinalReport": true, "shuffleQuestions": true, "shuffleChoices": true, "showFlashcards": true, "showSummary": true, "bgImageId": 123, "logoUrl": "<string>", "showBranding": true }'
{ "status": "success", "message": "Settings updated successfully", "data": { "id": "<string>", "quizId": "<string>", "emailRequired": true, "nameRequired": true, "showCorrectAnswer": true, "showFinalReport": true, "shuffleQuestions": true, "shuffleChoices": true, "showFlashcards": true, "showSummary": true, "bgImageId": 123, "logoUrl": "<string>", "showBranding": true } }
Update the configuration settings for a specific quiz
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the quiz
Settings updated successfully
The response is of type object.
object