POST
/
public
/
get-all-quizzes
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-all-quizzes \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "pageNumber": 2,
        "limit": 50.5
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "result": {
          "paginationMetadata": {
            "totalResultCount": 123,
            "totalPageCount": 123
          },
          "quizzes": [
            {
              "quizId": "<string>",
              "createdAtIso": "2023-11-07T05:31:56Z",
              "title": "<string>"
            }
          ]
        }
      }
    }
  }
]

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[].