Skip to content

Scores

Endpoints for handling learner scores on quizzes, activities, and assignments. Use these APIs to submit, retrieve, update, and delete scores for individual learners or groups.

Operations

Get scores

Request

Security
imfKey
Query
userstring
quizstring
curl -i -X GET \
  'https://innovario.apishowdown.com/_mock/cicd-repo/openapi/scores?user=abc123&quiz=Who%20we%20are' \
  -H 'IMF-KEY: YOUR_API_KEY_HERE'

Responses

Retrieved.

Bodyapplication/json
Array [
idstringread-only
userstring
scorenumber
quizstring
attemptsinteger
breakdownArray of objects
]
Response
[ { "id": "score_abc987def123", "user": "abc123", "score": 0.85, "quiz": "Who we are", "attempts": 1, "breakdown": [] } ]