Quiz

Initialise a new attempt for a quiz

POST
/api/v1/quiz/attempt
/api/v1/quiz/attempt

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The ID of the quiz to attempt

quizId
Required
string

Minimum length: 1
curl -X POST "https://example.com/api/v1/quiz/attempt" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "quizId": "string"
  }'

OK