For Developers
Get School
GET https://ed.link/api/v2/my/schools/:school_id
Retrieve information about the specific School that the current user is associated with.
Request Parameters
This query allows for standard paging parameters.
This query allows for filtering results.
Sample Request
axios.get('https://ed.link/api/v2/my/schools/00000000-0000-0000-0000-000000000000', {
headers: {
authorization: `Bearer ${person_access_token}`
}
});
Sample Response
{
"$data": {
"id": "00000000-0000-0000-0000-000000000000",
"name": "Sample School",
"created_date": "2021-07-13T17:45:27.218Z",
"updated_date": "2022-01-26T22:44:36.078Z",
"locale": null,
"address": {},
"time_zone": null,
"grade_levels": [],
"properties": {},
"identifiers": [],
"district_id": "00000000-0000-0000-0000-000000000000"
},
"$request": "00000000-0000-0000-0000-000000000000"
}