POST
/
assignment-evaluation
/
v1
/
assignment
/
Create Assignment
curl --request POST \
  --url https://api-staging.crazygoldfish.com/assignment-evaluation/v1/assignment/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "assignmentName": "English Assignment",
  "userType": 1,
  "parentInstituteId": "101",
  "instituteId": "202",
  "courseId": "303",
  "grade": "8",
  "section": "B"
}'
{
  "id": "2600413f-7c6e-46ef-8ea9-3e7b5834879f",
  "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

Assignment created successfully.

The response is of type object.