For Developers

List Courses

GET https://ed.link/api/v2/graph/schools/:school_id/courses

Retrieve a list of Courses associated with the specified School.

Request Parameters

ParameterTypeDescription
school_idstringThe UUID of the desired School.

This query allows for standard paging parameters.

This query allows for filtering results.

Sample Request

axios.get('https://ed.link/api/v2/graph/schools/00000000-0000-0000-0000-000000000000/courses', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": [
        {
            "id": "00000000-0000-0000-0000-000000000000",
            "created_date": "2021-07-13T17:45:27.570Z",
            "updated_date": "2021-07-13T17:45:27.570Z",
            "name": "Data Structures & Algorithms",
            "code": "CS 425",
            "grade_levels": [],
            "subjects": ["CEDS.21"],
            "properties": {},
            "session_id": "00000000-0000-0000-0000-000000000000",
            "school_id": "00000000-0000-0000-0000-000000000000",
            "district_id": "00000000-0000-0000-0000-000000000000"
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}