LIST - Assignment
This API allows authenticated users to retrieve a paginated list of assignments along with associated metadata like total count, pagination links, and assignment details.
Key Notes:
- The response includes
count,pageSize,showing,next, andpreviousto handle pagination. - The
datafield contains an array of assignment objects following theUpdatedAssignmentResponseschema. - Useful for dashboards or any view where a user needs to browse or manage multiple assignments.
Scenario: Fetching Assignments for Review
- A teacher wants to review all assignments created for Grade 7.
- They send a GET request to this endpoint (optionally with query parameters for filtering/pagination).
- The system responds with a paginated list of assignments and relevant navigation links.
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
List of assignments retrieved successfully.
Total number of assignments available.
20
Number of items displayed per page.
10
Current page display information.
"Page 1 of 2"
URL for the next page of results.
"{{base_url}}/assignment-evaluation/v1/assignment/?page=2"
URL for the previous page of results.
null