docs_protocol // v1.0

docs
system.

complete technical reference for the lucy platform. everything you need to deploy, configure, and extend your school account.

section_index
01

Getting Started

System Overview
Setting up your School
Role Setup
First Login
api_reference // example
attendance_fetch.ts
// Authenticate and fetch student attendance
const res = await fetch('/api/school/attendance', {
headers: {
'Authorization': 'Bearer ${token}',
'Content-Type': 'application/json'
}
});
const { records, summary } = await res.json();
// records: AttendanceRecord[]
// summary: { present, absent, late, total }