For Developers
Get an Attendance Record
GET https://ed.link/api/v2/graph/meetings/:meeting_id/attendance/:attendance_id
Retrieve information about a specific Attendance record. If the attendance id is not associated with the meeting or a meeting does not exist, a 404 will be returned.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
meeting_id | string | The UUID of the desired Meeting. |
attendance_id | string | The UUID of the desired Attendance. |
Sample Request
axios.get(`https://ed.link/api/v2/graph/meetings/${meeting_id}/attendance/${attendance_id}`, {
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": "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"
}
