GET - Assignment Model Answer
This API fetches the detailed model answer sheet for a given assignment ID. The response includes rubric data, document links (if any), and status indicators.
Path Parameter:
id(required): The unique identifier of the model answer sheet.
Response Includes:
id: Model answer sheet ID.documents[]: List of any uploaded documents (usually empty if only rubric is used).rubric: Rubric details used for evaluationrubricCriteria: Each evaluation criterion (e.g., Clarity, Creativity).scoringLogic: Explanation of scores from 1 to 5 for each criterion.status: Evaluation status (e.g., 1 = In Progress, 2 = Extracted, etc.)
GET
cURL
Documentation Index
Fetch the complete documentation index at: https://docs.crazygoldfish.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Model answer sheet updated successfully.
Previous
GET - Extracted Model Answer This API allows authenticated users to retrieve the model answer details of a specific assignment. The model answer may include associated documents, rubric information, and a hierarchical question structure with individual model answers per question.
### Key Parameters:
- **assignmentId** (`path param`, required): The unique ID of the assignment for which the model answer is requested.
### Response Includes:
- `assignmentName`: Title of the assignment.
- `courseId`, `grade`: Educational context of the assignment.
- `parentQuestions[]`: A list of question groups, each containing sub-questions.
- For each question:
- `text`, `questionNumber`, `marks`
- `modelAnswer`: ID, linked rubric, step marking (if any), etc.
Next
cURL