GET
/
quiz
/
{quizId}
/
task
curl --request GET \
  --url https://app.quizrise.com/api/v1/quiz/{quizId}/task \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "createdQuestionCount": 123,
  "pendingQuestionCount": 123,
  "isQuestionCreationTaskRunning": 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
Task information retrieved successfully
status
enum<string>
required
Available options:
success
createdQuestionCount
integer
required
pendingQuestionCount
integer
required
isQuestionCreationTaskRunning
boolean
required