Logout in: 0 min and 0 sec

Dashboard: Due for Graduation Summary by District LEA

Return summary information about the number of 12th graders who could potentially graduate on a per district basis.

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"
    }
  }