ACCESS API
Account Management
Account Owners
Arkansas Civics Test
Community Service Learning
Data Services Agreements
Online Testing
Private Schools
Home Schools
Smart Core
Student Transcripts
Advanced Searching
OneRoster API
Student Data API
Student Assign State-ID
POST - https://rest.triand.com/Access/studentIdAssign
Required Parameters: (JSON - Same as Student Match)
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", \
} \
}'