Description
Enables you to get a list of results submitted to a particular assessment order.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results?limit={limit}&offset={offset}
Path Parameters
name | type | description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
name | type | description |
---|---|---|
limit | string | number of results to return, max is 100, default is 10 |
offset | string | number of results to skip while processing the results, default is 0 |
Request Body
n/a
Response Body
ListResult containing list of AssessmentResults
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/results
Example response
{ "limit": 10, "offset": 0, "totalFound": 2, "content": [ { "id": "511a3942300469a9c33819d8", "createDate": "2013-03-08T09:53:44.863+0000", "title": "Enterprise Java Beans test results", "description": "Mr. Jet Li demonstrated outstanding Java Skills and we believe he will be a great Senior Java Developer", "passed": true, "score": "98/100", "author": { "firstName": "John", "lastName": "Mnemonic", "email": "john.mnemonic@smartrecruiters.com", "phone": "(123) 321 32 1231" } }, { "id": "511a3942300469a9c33819d8", "createDate": "2013-03-08T09:53:44.863+0000", "title": "Objec Oriented Programming test results", "description": "Mr. Jet Li demonstrated full proficiency in Object Oriented programming", "passed": true, "score": "95/100", "author": { "firstName": "John", "lastName": "Mnemonic", "email": "john.mnemonic@smartrecruiters.com", "phone": "(123) 321 32 1231" } } ] } |