PATCH
/
evaluation-platform
/
v1
/
exam
/
{examId}
/
answer-sheet
/
{ansSheetId}
/
answer
/
{ansId}
/
feedback
/
{feedbackId}
/
query
/
{feedbackQueryId}
curl --request PATCH \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{examId}/answer-sheet/{ansSheetId}/answer/{ansId}/feedback/{feedbackId}/query/{feedbackQueryId}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": 1
}'
{
  "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": 1,
        "text": "why my marks has been deducted",
        "responses": [
          "<any>"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

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
status
integer

Status of the feedback query.

Example:

1

Response

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

Feedback details retrieved successfully.