POST
/
evaluation-platform
/
v1
/
exam
/
curl --request POST \
  --url https://api-staging.crazygoldfish.com/evaluation-platform/v1/exam/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "examName": "Mid-Term Exam",
  "grade": 10,
  "subject": 1,
  "examType": 1,
  "examSet": "A",
  "examDate": "2025-01-10",
  "classSection": "A"
}'
{
  "examId": "4340132f-50fa-4877-9ffa-e9b7ee59d51f",
  "documents": []
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201
application/json

Exam created successfully.

The response is of type object.