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
emailRequired
boolean
nameRequired
boolean
showCorrectAnswer
boolean
showFinalReport
boolean
shuffleQuestions
boolean
shuffleChoices
boolean
showFlashcards
boolean
showSummary
boolean
bgImageId
integer
logoUrl
string | null
showBranding
boolean

Response

200
application/json
Settings updated successfully
status
enum<string>
Available options:
success
message
string
Example:

"Settings updated successfully"

data
object