POST
/
public
/
get-user-course-item-result
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-user-course-item-result \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "courseItemId": "<string>",
        "userId": "<string>"
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "result": {
          "isMarkedAsCompleted": true,
          "details": {
            "courseItemType": "Quiz",
            "quizUniqueId": "<string>",
            "questions": [
              {
                "questionUniqueId": "<string>",
                "selectedOptionIds": [
                  "<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[].