PUT
/
quiz
/
{quizId}
/
settings
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
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

quizId
string
required

The ID of the quiz

Body

application/json

Response

200
application/json

Settings updated successfully

The response is of type object.