Logout in: 0 min and 0 sec

Student Assign State-ID

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

Required Parameters: (JSON - Same as Student Match)

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

ResponseDescription
actionOkBoolean - true if match found
errorsEmpty array if no errors
state-idArkansas 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",   \
          } \
        }'