Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Overview

This API returns standardized tests that the student has taken and the scores earned.  Example tests that could be returned are ACT, SAT, placement tests, and others.

Get All Tests

GET /ssp/api/1/person/{id}/test

Security

PERSON_TEST_READ

Returns

{"success" : "true",
 "results" : "100",
 "rows" : 
    [{"schoolId":"0123456",
      "testcode" : "ACT",
      "name" : "American College Test",
      "subTestCode" : "ENG",
      "subTestName" : "English",
      "takenDate" : "2012-03-20",
      "score" : "28"
      "status":"Accepted"},
     {"schoolId":"0123456",
      "testcode" : "ACT",
      "name" : "American College Test",
      "subTestCode" : "MATH",
      "subTestName" : "Mathematics",
      "takenDate" : "2012-03-20",
      "score" : "24"
      "status":"Accepted"},
 ]
}
  • No labels