For Developers

List Meetings For Class

GET https://ed.link/api/v2/graph/classes/:class_id/meetings

Retrieve a list of Meetings for a given class. This can include both day meetings and period meetings. You could use this endpoint to quickly figure out what days a class will meet or has met which can be useful for attendance tracking.

Request Parameters

This query allows for standard paging parameters.

ParameterLocationTypeDescription
class_idurlstring

The UUID of the desired Class.

$firstquerynumber

Returns the first n elements from the list.

$lastquerynumber

Returns the last n elements from the list.

$beforequeryuuid

Returns the elements in the list that come before the specified item.

$afterqueryuuid

Returns the elements in the list that come after the specified item.

It is best practice to use either $first or $last in conjunction with the $next value returned by the API to paginate through results.

Sample Request

axios.get(`https://ed.link/api/v2/graph/classes/c3cd44bc-2a9e-43c9-b32b-71e2b531604b/meetings`, {
    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"
        },
        {
            "created_date": "2025-02-25T16:34:43.271Z",
            "updated_date": "2025-05-15T01:34:43.817Z",
            "properties": {},
            "identifiers": [],
            "id": "39066154-722f-47e3-bd96-e60b86541660",
            "class_id": "c3cd44bc-2a9e-43c9-b32b-71e2b531604b",
            "day_id": "788bb495-9873-4c1d-b960-b7882a1e7512",
            "period_id": "97a0ac7a-e109-4ac4-8429-accac6aad86c",
            "type": "period"
        },
        {
            "created_date": "2025-02-25T16:34:43.271Z",
            "updated_date": "2025-05-15T01:34:43.817Z",
            "properties": {},
            "identifiers": [],
            "id": "2538179b-6949-44ec-a2f0-3448d1f52612",
            "class_id": "c3cd44bc-2a9e-43c9-b32b-71e2b531604b",
            "day_id": "47f2eabb-f000-48e4-8afe-85d1202e527a",
            "period_id": "97a0ac7a-e109-4ac4-8429-accac6aad86c",
            "type": "period"
        }
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}