Dashboard: Due for Graduation Summary by District LEA
Return summary information about the number of students on a per district basis who's graduation year is the current or previous school year and their grade level is one of 09, 10, 11, 12, 13, 14, 15, GG, SM, or SS.
POST - https://rest.triand.com/Access/dashboardDueForGraduationSummaryByDistrictLea
No Required Parameters
CURL Example:
curl -X POST https://rest.triand.com/Access/dashboardDueForGraduationSummaryByDistrictLea
-H "Authorization: Bearer eyJ....really long string...ItCJA"
-H "Accept: application/json"
-H "Content-Type: application/json"
Javascript fetch Example:
let url = 'https://rest.triand.com/Access/dashboardDueForGraduationSummaryByDistrictLea';
let parameters = {
}
let opts = {
method: 'POST',
headers: {
'Authorization' = 'Bearer eyJ....really long string...ItCJA'
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(parameters),
withCredentials: false,
credentials: 'include',
}
let response = await fetch(url, opts); JSON Response
{ "params": {
"actionOk": true,
"error": [],
"districts": [
{
"lea": "4304000",
"name": "CABOT SCHOOL DISTRICT",
"cnt": 759
},
{
"lea": "6001000",
"name": "LITTLE ROCK SCHOOL DISTRICT",
"cnt": 1408
},
... more districts ...
],
"timing": {
"srvStart": "2025-07-03 01:40:04.990",
"srvEnd": "2025-07-03 01:40:06.855",
"srvMills": 1865
},
"jwt": "eyJ....really long string...ItCJA",
"frtTkn": "eyJ....really long string...ItCJA"
}
}