Student Send Transcript to College

Student Transcript to College


Hi

POST - https://rest.triand.com/Access/studentSendToCollege

Required Parameters: (JSON)

ParameterBusiness Rule / RegexDescription
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

ErrorDescription
access-studentsendtocollete-access-api-not-allowedLogged in user does not have access to the ACCESS API.
access-studentsendtocollete-stateid-not-in-sphereLogged in user does not have access to the State-ID.
access-studentsendtocollete-stateid-not-foundState-ID does not exist.
access-studentsendtocollete-stateid-not-validState-ID is not valid.
access-studentsendtocollete-assessment-not-validAssessment object is not valid.

A transcript sent to College contains the following transcript sections:

screenshot student take a test

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