Dashboard: Due for Graduation State-IDs for District LEA


Return student State-IDs for the district. Students are included when their 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/dashboardDueForGraduationForDistrictLea

No Required Parameters

CURL Example:

curl -X POST https://rest.triand.com/Access/dashboardDueForGraduationForDistrictLea  
      -H "Authorization: Bearer eyJ....really long string...ItCJA" 
      -H "Accept: application/json" 
      -H "Content-Type: application/json" 
      -d '{"districtLea": "6001000" }'

Javascript fetch Example:

let url = 'https://rest.triand.com/Access/dashboardDueForGraduationForDistrictLea';
let parameters = { 
  districtLea: "6001000"
}
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": [],
    "districtLea": "6002000",
    "stateids": [
        "4331435364",
        "5020483846",
        "7302140633",
      ... more state-ids ...
    ],
    "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"
    }
  }