For Developers

List Teachers

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

Retrieve a list of People with the teacher role 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/teachers', {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": [
        {
            "id": "00000000-0000-0000-0000-000000000000",
            "created_date": "2021-07-13T17:45:39.937Z",
            "updated_date": "2021-07-13T17:45:39.937Z",
            "first_name": "George",
            "middle_name": "Oscar",
            "last_name": "Bluth",
            "display_name": "Gob Bluth",
            "picture_url": "https://static.wikia.nocookie.net/arresteddevelopment/images/7/79/GOB_on_segway.jpg",
            "roles": ["teacher"],
            "email": "gob.bluth@example.com",
            "phone": "12345556789",
            "locale": "en",
            "time_zone": "America/Los_Angeles",
            "graduation_year": 1996,
            "grade_levels": ["PS"],
            "demographics": {},
            "properties": {},
            "district_id": "00000000-0000-0000-0000-000000000000",
            "school_ids": ["00000000-0000-0000-0000-000000000000"]
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}