POST
/
evaluation-platform
/
v1
/
exam
/
{examId}
/
answer-sheet
/
{ansSheetId}
/
answer
/
{ansId}
/
feedback
/
{feedbackId}
/
query
/
{feedbackQueryId}
curl --request POST \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/answer-sheet/{ansSheetId}/answer/{ansId}/feedback/{feedbackId}/query/{feedbackQueryId}/ \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "ok got it"
}'
{
  "data": {
    "id": "def80534-8f59-49ea-b43e-553075b1db91",
    "examId": "edaf2e84-e911-4150-9628-6d182a05ed0d",
    "studentId": "10160091",
    "answerId": "11637fca-dc77-4b63-88c0-ec74126d951c",
    "feedback": "The student selected an incorrect option. It is important to carefully analyze the question and the options provided. Understanding the characteristics of a homologous series is crucial for answering such questions correctly.",
    "marks_deducted": "1 - incorrect option selected",
    "justification": "The student's answer (c) gradation in Physical Properties is incorrect as it does not address the question of what is not observed in a homologous series. The model answer correctly identifies (a) Change in chemical properties as the correct response.",
    "room_for_improvement": "To achieve full marks, the student should select the correct option (a) Change in chemical properties, which is the only option that is not observed in a homologous series.",
    "feedbackQuery": [
      {
        "id": "e2b75a94-bc8a-4a2b-a23f-32abc1198f37",
        "createdByRole": "Student",
        "queryType": 1,
        "status": 3,
        "text": "why my marks has been deducted",
        "responses": [
          {
            "id": "3421ecec-30fd-4a51-89ba-aa796332ba51",
            "createdByRole": "AI",
            "text": "The student's selected answer '(c) gradation in Physical Properties' is incorrect according to the marking scheme. The correct answer is '(a) Change in chemical properties', as homologous series have the same functional group and show a gradation in physical properties, but do not have a change in chemical properties. Therefore, no change in marks is warranted."
          }
        ]
      }
    ]
  }
}

Path Parameters

examId
string
required

Unique identifier of the exam.

ansSheetId
string
required

Unique identifier of the answer sheet.

ansId
string
required

Unique identifier of the answer.

feedbackId
string
required

Unique identifier of the feedback.

feedbackQueryId
string
required

Unique identifier of the feedback query.

Body

application/json
text
string

Text of the feedback query.

Example:

"ok got it"

Response

200 - application/json
Success - Feedback details retrieved successfully.
data
object