POST
/
v1
/
evaluation
curl --request POST \
  --url https://api-staging.crazygoldfish.com/v1/evaluation/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'accept: <accept>' \
  --data '{
  "client_id": "123456",
  "student_id": "<string>",
  "institution_id": "<string>",
  "teacher_id": "<string>",
  "parent_id": "<string>",
  "class": "<string>",
  "subject": "<string>",
  "student_name": "<string>",
  "image_urls": [
    "<string>"
  ]
}'
{
  "status": "200",
  "message": "Evaluation request submitted successfully",
  "data": {
    "evaluation_id": "<string>",
    "evaluation_status": "pending"
  }
}

Authorizations

Authorization
string
header
required

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

Headers

accept
enum<string>
default:application/json
required
Available options:
application/json

Body

application/json

Response

200
application/json

Successful response

The response is of type object.