GET - Boards
This API allows authenticated users to retrieve all boards.
How to Use:
- Call
GET /metadata/v1/boardto get the list of all boards and their uniqueidvalues. - Use the
idof the required board in lesson plans or any other feature that needs a board reference.
Example Scenario: A teacher wants to create or view a lesson plan for a specific board: - First, they call this API to list all boards and find the required board’s id. - Then, they use that id in the lesson plan API or anywhere else in the system where a board reference is needed.
GET
List Boards
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.
Previous
GET - Grades This API allows authenticated users to retrieve all grades for a specific board.
**How to Use:**
1. Call `GET /metadata/v1/board/{board_id}/grades` with the required board's `id` to get the list of all grades for that board.
2. Use the `id` of the required grade in lesson plans or any other feature that needs a grade reference.
**Example Scenario:** A teacher wants to create or view a lesson plan for a specific grade within a board: - First, they call the boards API to list all boards and find the required board's `id`. - Then, they call this API to list all grades for that board and find the required grade's `id`. - Finally, they use that grade `id` in the lesson plan API or anywhere else in the system where a grade reference is needed.
Next
List Boards