POST - Student Assignment Sheet
The API allows clients to create a new assignment sheet for a specific student in an assignment. It associates the student’s ID with an assignment sheet and returns the unique ID for the assignment sheet. The assignment sheet can later be updated with documents (e.g., scanned PDFs or images).
Scenarios:
-
Creating a New assignment Sheet for a Student:
- A teacher provides the student’s ID to create a new assignment sheet.
- Outcome:
- The API generates a unique assignment sheet ID linked to the student.
- This ID is used for future reference and document uploads.
-
Associating Documents with the Created assignment Sheet:
- After scanning the student’s handwritten assignment sheet, the teacher uploads a PDF or JPEG images using the unique assignment sheet ID.
- Outcome:
- The scanned document is associated with the student’s assignment sheet, enabling it to be evaluated or graded in subsequent steps.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Unique identifier of the assignment
Body
Numeric type representing the role of the user.
1
Unique identifier of the student.
"12345"
Name of the student.
"John Doe"
Unique identifier of the batch.
"batch_1"
Unique identifier of the session.
"session_1"
Unique identifier of the teacher.
"teacher_1"
Response
Unique identifier for the answer sheet.
"57387c68-0706-4a9d-834a-237b6b63cb5d"
Status of the answer sheet.
0
Unique identifier of the student.
"12345"
Name of the student.
"John Doe"
Unique identifier of the batch.
"batch_1"
Unique identifier of the session.
"session_1"
List of documents associated with the answer sheet.
[]