QuickSense API
  • Introduction
  • Authentication
  • Errors
  • Core Resources
    • Enrolments
      • The enrolment object
      • Create a user and add into a course
      • Create a user and add into a classroom
      • Remove user from a course
      • Remove user from a classroom
    • Users
      • The user object
      • Retrieve a user
      • Update a user
      • Delete a user
      • List all users
    • Courses/Classrooms
      • The courses object
      • List all clasrooms/courses
Powered by GitBook
On this page

Was this helpful?

  1. Core Resources
  2. Courses/Classrooms

List all clasrooms/courses

Get course related information for all courses available to the school

Get Courses

GET https://api.cakes.com/api/v2/public/courses

This endpoint allows you to get list of all available courses & their classroom info.

Headers

Name
Type
Description

ApiKey

string

School's API Key

[
    ...
    {
        courseId: string,
        courseName: string,
        classId: string,
        className: string
   },
   ...
]
PreviousThe courses object

Last updated 4 years ago

Was this helpful?