For Developers

List Attendance For Meeting

GET https://ed.link/api/v2/graph/meetings/:meeting_id/attendance

Retrieve a list of Attendance records for a meeting.

Request Parameters

This query allows for standard paging parameters.

ParameterTypeDescription
meeting_idstringThe UUID of the desired Meeting.

Sample Request

axios.get(`https://ed.link/api/v2/graph/meetings/${meeting_id}/attendance`, {
    headers: {
        authorization: `Bearer ${integration_access_token}`
    }
});

Sample Response

{
    "$data": [
        {
            "created_date": "2024-08-01T13:23:05.092Z",
            "updated_date": "2024-08-01T13:23:05.092Z",
            "properties": {},
            "comment": null,
            "identifiers": [],
            "id": "ebe7d0cd-41cf-43c7-a041-fa32a39241e9",
            "state": "present",
            "flags": [],
            "person_id": "b0e60a20-c9ae-4327-bbc0-cd4880c6c30d",
            "meeting_id": "4cb963bf-d5cb-47c6-a3a5-1ddc28c65a71"
        },
        {
            "created_date": "2024-08-01T13:23:05.092Z",
            "updated_date": "2024-08-01T13:23:05.092Z",
            "properties": {},
            "comment": null,
            "identifiers": [],
            "id": "a7fe97b7-92c2-4c82-b264-ddf0ad6ccc46",
            "state": "present",
            "flags": ["late"],
            "person_id": "c1c2d8e1-443e-4650-9621-6f41a06c8e9d",
            "meeting_id": "4cb963bf-d5cb-47c6-a3a5-1ddc28c65a71"
        },
        {
            "created_date": "2024-08-01T13:23:05.092Z",
            "updated_date": "2024-08-01T13:23:05.092Z",
            "properties": {},
            "comment": null,
            "identifiers": [],
            "id": "c20758c7-a3ca-40c0-9d1e-e6fd91dd290d",
            "state": "absent",
            "flags": [
                "excused",
                "parent_excused"
            ],
            "person_id": "8a11cbd9-637f-4912-a9bc-d7473641cafb",
            "meeting_id": "4cb963bf-d5cb-47c6-a3a5-1ddc28c65a71"
        },
    ],
    "$request": "00000000-0000-0000-0000-000000000000"
}