Skip to main content
GET
/
edubridge
/
enrollments
/
defaultClass
/
{courseId}
/
{schoolId}
?
Get the default class for a course
curl --request GET \
  --url https://api.alpha-1edtech.ai/edubridge/enrollments/defaultClass/{courseId}/{schoolId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "123",
    "title": "<string>",
    "classCode": "<string>",
    "subjectCodes": [
      "<string>"
    ],
    "subjects": [
      "Reading"
    ],
    "grades": [
      "3"
    ],
    "periods": [
      "<string>"
    ],
    "course": {
      "id": "<string>",
      "title": "<string>",
      "metadata": {},
      "subjects": [
        "<string>"
      ],
      "grades": [
        "<string>"
      ],
      "primaryApp": {
        "id": "<string>",
        "name": "<string>",
        "domains": [
          "<string>"
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

courseId
string
required

The unique identifier for the course

schoolId
string

The unique identifier for the school

Response

200 - application/json

Successful response

data
object
required