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 Assign State-ID
POST - https://rest.triand.com/Access/studentIdAssign
Required Parameters: (JSON - Same as Student Match)
| Parameter | Business Rule / Regex | Description |
|---|---|---|
| first | /w+/ | Student first name |
| middle | /w+/ | Student middle name |
| last | /w+/ | Student last name |
| ssn | /d{9}/ | Student SSN |
| dob | /d{8}/ | Student Date of Birth (YYYYMMDD) |
| addr1 | /w+/ | Student Address1 (123 Main St) |
| addr2 | /w*/ | Student Address2 (Apt 40) |
| city | /w+/ | Student City |
| state | /w{2}/ | Student State (AR) |
| zip | /w{5}/ | Student Zip |
Response Parameters: (JSON)
| Response | Description |
|---|---|
| actionOk | Boolean - true if match found |
| errors | Empty array if no errors |
| state-id | Arkansas State-ID |
Example post and response:
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 '{ \
"profile": { \
"first": "John", \
"last": "Doe", \
"middle": "A", \
"ssn": "123456789", \
"dob": "YYYYMMDD", \
"addr1": "123 Main St", \
"addr2": "Apt 4B", \
"city": "Little Rock", \
"state": "AR", \
"zip": "72201", \
} \
}'