For Developers
Get Course
GET https://ed.link/api/v2/graph/courses/:course\_id
Retrieve information about a specific Course.
Request Parameters
Parameter | Type | Description |
---|---|---|
course_id | string | The UUID of the desired Course. |
Sample Request
axios.get('https://ed.link/api/v2/graph/courses/00000000-0000-0000-0000-000000000000', {
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"
}