POST
/
public
/
get-quiz-details
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-quiz-details \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "quizId": "<string>"
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "createdAtIso": "2023-11-07T05:31:56Z",
        "quizTitle": "<string>",
        "questions": [
          {
            "questionId": "<string>",
            "type": "MultiCorrect",
            "title": "<string>",
            "explanation": "<string>",
            "description": "<string>",
            "options": [
              {
                "optionId": "<string>",
                "text": "<string>",
                "isCorrectOption": true
              }
            ]
          }
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

The body is of type object.

Response

200 - application/json

API Response Body

The response is of type object[].