ACCESS API

Account Management

Account Owners

Arkansas Civics Test

Community Service Learning

Data Services Agreements

Online Testing

Private Schools

Home Schools

Smart Core

Student Transcripts

Advanced Searching

OneRoster API

Student Data API


Dashboard: Due for Graduation State-IDs for District LEA


Return student State-IDs for 12th graders who could potentially graduate for the district.

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