For Developers
List Classes
GET https://ed.link/api/v2/graph/people/:person_id/classes
Retrieve a list of Classes associated with the specified Person.
Request Parameters
| Parameter | Type | Description | 
|---|---|---|
person_id | string | The UUID of the desired Person. | 
This query allows for standard paging parameters.
This query allows for filtering results.
Sample Request
axios.get('https://ed.link/api/v2/graph/people/00000000-0000-0000-0000-000000000000/classes', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});
Sample Response
{
    "$data": [
        {
            "id": "00000000-0000-0000-0000-000000000000",
            "created_date": "2021-07-13T17:45:27.685Z",
            "updated_date": "2021-07-13T17:45:27.685Z",
            "name": "Defense Against the Dark Arts",
            "description": null,
            "picture_url": null,
            "grade_levels": ["06"],
            "subjects": ["CEDS.08"],
            "periods": ["1"],
            "state": "active",
            "locale": null,
            "time_zone": null,
            "properties": {},
            "session_ids": ["00000000-0000-0000-0000-000000000000"],
            "course_id": "00000000-0000-0000-0000-000000000000",
            "school_id": "00000000-0000-0000-0000-000000000000"
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}