ACCESS API
Account Management
Account Owners
Arkansas Civics Test
Community Service Learning
Data Services Agreements
Online Testing
Private Schools
Smart Core
Student Transcripts
Advanced Searching
OneRoster API
Dashboard: Students Information
POST - https://rest.triand.com/Access/dashboardStudentsInformation
Required Parameters: (JSON)
| Parameter | Business Rule / Regex | Description |
|---|---|---|
| stateids | /w+/ | Array of Student state IDs |
CURL Example:
curl -X POST https://rest.triand.com/Access/studentMatch
-H "Authorization: Bearer eyJ....really long string...ItCJA"
-H "Accept: application/json"
-H "Content-Type: application/json"
-d '{"stateids":["T123456789", "4958002421", "3137184487", "9559204289", "5104420447", "8177880203"] }'
Javascript fetch Example:
let url = 'https://rest.triand.com/Access/studentMatch';
let parameters = {
{"stateids":["T123456789", "4958002421", "3137184487", "9559204289", "5104420447", "8177880203"] }
}
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
Each student object contains the following fields:
- stateid - The State-ID of the student.
- firstName - The first name of the student.
- lastName - The last name of the student.
- middleName - The middle name of the student.
- uiSearch - Catalog information related to the student.
- guardians - An array of guardian objects, each containing contact information.
{ "params": {
"actionOk": true,
"error": [],
"stateids": [
"T123456789",
"4958002421",
"3137184487",
"9559204289",
"5104420447",
"8177880203"
],
"students": {
"3137184487": {
"id": "3137184487",
"uiSearch": {
"localId": "1803002028",
"stateId": "3137184487",
"nationalId": "3137184487",
"grade": "GG",
"dob": "20010409",
"ssn": "xxx-xx-1168",
"authCode": "AAEC-GRQE-NEdb-DMgk",
"usState": "AR",
"district": {
"name": "WEST MEMPHIS SCHOOL DISTRICT",
"lea": "1803000",
"pk": 4002
},
"school": {
"name": "THE ACADEMIES OF WEST MEMPHIS",
"lea": "1803703",
"pk": 114392
},
"building": {
"name": "",
"number": ""
},
"enrolled": false,
"enrolledDate": "20180813",
"graduated": true,
"graduatedDate": "20190517",
"userPk": 492110,
"withdrawalDate": "20190614",
},
"guardians": [
{
"relationship": "Guardian",
"guardianName": "Neel, Lyndsey",
"address": " 820 S. Roselawn Dr, West Memphis, AR 72301",
"lastName": "Neel",
"firstName": "Lyndsey",
"contactPriority": "1",
"addr1": "820 S. Roselawn Dr",
"city": "West Memphis",
"usState": "AR",
"zip": "72301",
"phoneContacts": []
}
],
"firstName": "Cameron",
"lastName": "Aaron",
"middleName": ""
},
"T123456789": {
"error": "stateid-not-found",
"stateid": "T123456789"
},
...More students...
},
"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"
}
}