GET
/
quiz
/
{quizId}
/
settings
curl --request GET \
  --url https://app.quizrise.com/api/v1/quiz/{quizId}/settings \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "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

Response

200
application/json
Quiz settings retrieved successfully
status
enum<string>
Available options:
success
data
object