Endpoint Examples
GET Endpoints
GET Endpoints
🔸 Fetch All Records
GET /authentication/api/records/
Returns all user records.
🔸 Get Record by ID
GET /authentication/api/records/{id}/
Returns a specific record.
🔸 Get All Bookmarks
GET /dashboard/api/bookmarks/
Returns all bookmarks.
🔸 Get Bookmark by ID
GET /dashboard/api/bookmarks/{id}/
Returns a specific bookmark.
🔸 Get All Problems
GET /problem_list/api/problems/
Lists all problems.
🔸 Get Problem by ID
GET /problem_list/api/problems/{id}/
Gets a specific problem.
🔸 Get Problem Status
GET /problem_list/api/status/
Fetches all problem statuses.
🔸 Get Problem Status by ID
GET /problem_list/api/status/{id}/
Returns status of a specific problem.