Student Transcript to College


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)
assessments{object}Map of assessment-category keys to booleans indicating which categories the student authorized for release.

Supported assessments keys: ACT, ACTAspire, ACTSuperScore, ACTWorkKeys, Accuplacer, AP, IB, PSAT, SAT, ATLAS. Sending any other key returns access-studentsendtocollege-assessments-not-valid.

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,                                             \
              "IB": true,                                             \
              "PSAT": true,                                           \
              "SAT": true,                                            \
              "ATLAS": 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,
    IB: true,
    PSAT: true,
    SAT: true,
    ATLAS: 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-studentsendtocollege-access-api-not-allowedLogged in user does not have access to the ACCESS API.
access-studentsendtocollege-stateid-not-in-sphereLogged in user does not have access to the State-ID.
access-studentsendtocollege-stateid-not-foundState-ID does not exist.
access-studentsendtocollege-stateid-not-validState-ID is not valid.
access-studentsendtocollege-assessments-not-validAssessments object has unrecognized key.

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,
      "IB": true,
      "PSAT": true,
      "SAT": true,
      "ATLAS": 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"
}