PATCH
/
evaluation-platform
/
v1
/
exam
/
{id}
/
Update exam paper details
curl --request PATCH \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/{id}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form grade=12 \
  --form subject=1 \
  --form examType=1 \
  --form examSet=C \
  --form examDate=2023-12-25 \
  --form classSection=A \
  --form isFinal=true
{
  "examId": "4340132f-50fa-4877-9ffa-e9b7ee59d51f",
  "documents": [
    {
      "id": "628f10af-59b5-44f2-b27a-fdf30d254fd5",
      "status": 0,
      "pageNo": null,
      "uploadTime": "2025-01-02T11:03:30.034720Z",
      "url": "https://cgfblob.blob.core.windows.net/ielts/evaluation/CBSE_10_Maths_-_Mock_Test_A_SjFa0sA.pdf",
      "fileType": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required
Example:

"4340132f-50fa-4877-9ffa-e9b7ee59d51f"

Body

multipart/form-data

The details to update for the exam paper.

The body is of type object.

Response

200
application/json

Successfully updated exam details.

The response is of type object.