DELETE
/
quiz
/
{quizId}
curl --request DELETE \
  --url https://app.quizrise.com/api/v1/quiz/{quizId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Quiz successfully deleted"
}

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 to delete

Response

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

"Quiz successfully deleted"