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
Student Transcript to College
POST - https://rest.triand.com/Access/studentSendToCollege
Required Parameters: (JSON)
| Parameter | Business Rule / Regex | Description |
|---|---|---|
| stateid | /d{10}/ | Arkansas Student State-ID |
| fice | /d/ | College FICE code (digits) |
CURL Example:
curl -X POST https://rest.triand.com/Access/studentSendToCollege \
-H "Authorization: Bearer eyJ....really long string...ItCJA" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{ \
"stateid": "123456780", \
"fice": "123456", \
"assessments": { \
"ACT": true, \
"ACTAspire": true, \
"ACTSuperScore": true, \
"ACTWorkKeys": true, \
"Accuplacer": true, \
"AP": true, \
"PSAT": true, \
"SAT": true, \
} \
}' Javascript fetch Example:
let url = 'https://rest.triand.com/Access/studentSendToCollege';
let parameters = {
stateid: '123456789',
fice: '123456',
assessments: {
ACT: true,
ACTAspire: true,
ACTSuperScore: true,
ACTWorkKeys: true,
Accuplacer: true,
AP: true,
PSAT: true,
SAT: true
}
}
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); Error Responses Specific to Student Application
| Error | Description |
|---|---|
| access-studentsendtocollete-access-api-not-allowed | Logged in user does not have access to the ACCESS API. |
| access-studentsendtocollete-stateid-not-in-sphere | Logged in user does not have access to the State-ID. |
| access-studentsendtocollete-stateid-not-found | State-ID does not exist. |
| access-studentsendtocollete-stateid-not-valid | State-ID is not valid. |
| access-studentsendtocollete-assessment-not-valid | Assessment object is not valid. |
A transcript sent to College contains the following transcript sections:
JSON Response
A sample response is listed below.
{
params: {
"actionOk": true,
"error": [],
"stateid": "8847423388",
"fice": "123456",
"assessments": {
"ACT": true,
"ACTAspire": true,
"ACTSuperScore": true,
"ACTWorkKeys": true,
"Accuplacer": true,
"AP": true,
"PSAT": true,
"SAT": true
}
},
timing: {
srvStart: '2025-07-15 06:38:36.465',
srvEnd: '2025-07-15 06:38:36.912',
srvMills: 447
},
"jwt": "eyJ....really long string...ItCJA",
"frtTkn": "eyJ....really long string...ItCJA"
}