Quiz

Retrieve the list of quiz attempts

GET
/api/v1/quiz/attempts
/api/v1/quiz/attempts

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Query Parameters

quizIdstring

Specify the quiz ID of the attempts to retrieve from

Default: ""

limitinteger

The maximum number of attempts to retrieve

Default: 10Format: "int32"

offsetinteger

The number of attempts to skip

Default: 0Format: "int32"
curl -X GET "https://example.com/api/v1/quiz/attempts?quizId=&limit=10&offset=0" \
  -H "Authorization: <token>"

OK