For Developers
Get Meeting For Class
GET https://ed.link/api/v2/graph/classes/:class_id/meetings/:meeting_id
Retrieve information about a specific Meeting. If the meeting is not associated with the Class or a Class does not exist, a 404 will be returned.
Request Parameters
Parameter | Type | Description |
---|---|---|
class_id | string | The UUID of the desired Class. |
meeting_id | string | The UUID of the desired Meeting. |
Sample Request
axios.get(`https://ed.link/api/v2/graph/classes/c3cd44bc-2a9e-43c9-b32b-71e2b531604b/meetings/e604f33b-7de9-426d-abbb-0f07d9fba825`, {
headers: {
authorization: `Bearer ${integration_access_token}`
}
});
Sample Response
{
"$data": {
"created_date": "2025-02-25T16:34:43.271Z",
"updated_date": "2025-05-15T01:34:43.817Z",
"properties": {},
"identifiers": [],
"id": "e604f33b-7de9-426d-abbb-0f07d9fba825",
"class_id": "c3cd44bc-2a9e-43c9-b32b-71e2b531604b",
"day_id": "788bb495-9873-4c1d-b960-b7882a1e7512",
"period_id": null,
"type": "day"
},
"$request": "00000000-0000-0000-0000-000000000000"
}