/assessments
Assessment API Sunset
This API has been deprecated since September 4, 2023. The sunset date is June 10, 2024. If you are an assessment provider or looking to build an assessment integration with SmartRecruiters, please consider using the new Assessment API (2021).
get
Description
Enables you to get assessment order details. This operation requires passing the assessment order ID as part of the request parameter.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
n/a
Response Body
Instance of AssessmentOrder
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8
Example response
{
"id": "511a3942300469a9c33819d1",
"status": "NEW",
"createDate": "2013-03-07T13:34:40.137+0000",
"lastUpdateDate": "2013-03-07T13:34:40.137+0000",
"requestor": {
"firstName": "Rob",
"lastName": "Kaman",
"email": "[email protected]",
"phone": "(415) 111-2222"
},
"candidate": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Mark",
"lastName": "Hunt",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "409 North Magnolia Avenue, Orlando, FL 32801, United States"
},
"job": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"name": "Senior Ruby Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "FL",
"city": "Orlando"
}
},
"company": {
"id": "511a3942300469a9c33819d1",
"name": "Orlando Magic Inc."
},
"offer": {
"catalogId": "bbb-444-111",
"name": "Senior Ruby Developer Skill Test"
}
}
list
Description
Enables you to get a list of assessment order IDs
Request
GET https://api.smartrecruiters.com/v1/assessments?limit={limit}&offset={offset}&status={offerStatus}&fromDate={fromDate}&toDate={toDate}
Path Parameters
n/a
Query Parameters
Name | Type | Description |
---|---|---|
limit | integer | number of orders to return. max value is 100 |
offset | integer | number of orders to skip while processing result |
status | string | order status filter. Legal values are: NEW, IN_PROGRESS, REJECTED, COMPLETED. List operation will return only matching offers |
fromDate | string | createDate filter. search will return only orders created after given date. Date format need to comply with description here: Date |
toDate | string | createDate filter. search will return only orders created before given date. Date format need to comply with description here: Date |
Request Body
n/a
Response Body
ListResult containing list of AssessmentOrders
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments?limit=10&offset=10&fromDate=2013-01-16&toDate=2013-02-22&status=NEW
Example response
{
"limit": 10,
"offset": 0,
"totalFound": 2,
"content": [
{
"id": "511a3942300469a9c33819d8",
"status": "NEW",
"createDate": "2013-01-23T13:34:40.135+0000",
"lastUpdateDate": "2013-03-23T13:34:40.135+0000",
"candidate": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Zoe",
"lastName": "Temple",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "56 Tehama Street, San Francisco, CA 94105 "
},
"job": {
"id": "e45dfcab300260b2591f585126ede56627db4ef8",
"name": "Senior Java Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "CA",
"city": "San Francisco"
}
},
"company": {
"id": "511a3942300469a9c33811d1",
"name": "Oracle Inc."
},
"offer": {
"catalogId": "aaa-123-bbb",
"name": "Senior Java Developer Skill Test"
}
},
{
"id": "511a3942300469a9c33819d1",
"status": "NEW",
"createDate": "2013-01-25T13:34:40.137+0000",
"lastUpdateDate": "2013-01-25T13:34:40.137+0000",
"candidate": {
"id": "e44dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Mark",
"lastName": "Hunt",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "409 North Magnolia Avenue, Orlando, FL 32801, United States "
},
"job": {
"id": "e63dfcab377260b2591f585126ede56627db4ef8",
"name": "Senior Ruby Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "FL",
"city": "Orlando"
}
},
"company": {
"id": "322a3942300469a9c33811d1",
"name": "Orlando Magic Inc."
},
"offer": {
"catalogId": "bbb-444-111",
"name": "Senior Ruby Developer Skill Test"
}
}
]
}
accept
Description
Enables you to accept an assessment order.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/accept
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
Instance of AssessmentComment
Response Body
Instance of AssessmentOrder
Example request
curl -i -H "X-SmartToken:abc123" -H "Content-Type: application/json;charset=utf-8" -d @body.json -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/accept
Example request body
{
"message": "We are starting work on this. This assessment should take about 3 business days.",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
Example response
{
"id": "511a3942300469a9c33819d1",
"status": "IN_PROGRESS",
"createDate": "2013-03-07T13:34:40.137+0000",
"lastUpdateDate": "2013-03-07T13:34:40.137+0000",
"requestor": {
"firstName": "Rob",
"lastName": "Kaman",
"email": "[email protected]",
"phone": "(415) 111-2222"
},
"candidate": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Mark",
"lastName": "Hunt",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "409 North Magnolia Avenue, Orlando, FL 32801, United States"
},
"job": {
"id": "e63dfcab300260b2591f585126ede56627db4e11",
"name": "Senior Ruby Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "FL",
"city": "Orlando"
}
},
"company": {
"id": "511a3942300469a9c33811d1",
"name": "Orlando Magic Inc."
},
"offer": {
"catalogId": "bbb-444-111",
"name": "Senior Ruby Developer Skill Test"
}
}
reject
Description
Enables you to reject an assessment order.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/reject
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
Instance of AssessmentComment
Response Body
Instance of AssessmentOrder
Example request
curl -i -H "X-SmartToken:abc123" -H "Content-Type: application/json;charset=utf-8" -d @body.json -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/reject
Example request body
{
"message": "Unfortunately we cannot complete this order",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
Example response
{
"id": "511a3942300469a9c33819d1",
"status": "REJECTED",
"createDate": "2013-03-07T13:34:40.137+0000",
"lastUpdateDate": "2013-03-07T13:34:40.137+0000",
"requestor": {
"firstName": "Rob",
"lastName": "Kaman",
"email": "[email protected]",
"phone": "(415) 111-2222"
},
"candidate": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Mark",
"lastName": "Hunt",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "409 North Magnolia Avenue, Orlando, FL 32801, United States"
},
"job": {
"id": "e63dfcab300260b2591f585126ede56627db4321",
"name": "Senior Ruby Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "FL",
"city": "Orlando"
}
},
"company": {
"id": "511a3942300469a9c33811d1",
"name": "Orlando Magic Inc."
},
"offer": {
"catalogId": "bbb-444-111",
"name": "Senior Ruby Developer Skill Test"
}
}
complete
Description
Enables you to mark the status of an assessment order to complete.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/complete
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
Instance of AssessmentComment
Response Body
Instance of AssessmentOrder
Example request
curl -i -H "X-SmartToken:abc123" -H "Content-Type: application/json;charset=utf-8" -d @body.json -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/complete
Example request body
{
"message": "Order is completed, all results are sent",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
Example response
{
"id": "511a3942300469a9c33819d1",
"status": "COMPLETED",
"createDate": "2013-03-07T13:34:40.137+0000",
"lastUpdateDate": "2013-03-07T13:34:40.137+0000",
"requestor": {
"firstName": "Rob",
"lastName": "Kaman",
"email": "[email protected]",
"phone": "(415) 111-2222"
},
"candidate": {
"id": "e63dfcab300260b2591f585126ede56627db4ef8",
"firstName": "Mark",
"lastName": "Hunt",
"email": "[email protected]",
"phone": "(415) 111-2222",
"addressLine": "409 North Magnolia Avenue, Orlando, FL 32801, United States"
},
"job": {
"id": "e63dfcab300260b2591f585126ede56627db4321",
"name": "Senior Ruby Developer",
"industry": {
"id": "computer_software",
"label": "Computer Software"
},
"function": {
"id": "engineering",
"label": "Engineering"
},
"experienceLevel": {
"id": "mid_senior_level",
"label": "senior"
},
"location": {
"country": "US",
"region": "FL",
"city": "Orlando"
}
},
"company": {
"id": "511a3942300469a9c33811d1",
"name": "Orlando Magic Inc."
},
"offer": {
"catalogId": "bbb-444-111",
"name": "Senior Ruby Developer Skill Test"
}
}
/comments – insert
Description
Adding new comment to an assessment order.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/comments
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
Instance of AssessmentComment
Response Body
Instance of AssessmentComment with generated unique id and create date
Example request
curl -i -H "X-SmartToken:abc123" -H "Content-Type: application/json;charset=utf-8" -d @body.json -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/comments
Example request body
{
"message": "Since candidate was not responding for 3 days we will have a slight delay",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
Example response
{
"id": "211a3942300469a9c33819d1",
"createDate": "2013-03-08T09:22:01.605+0000",
"message": "Since candidate was not responding for 3 days we will have a slight delay",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
/comments – get
Description
Getting details of a comment in a particular assessment order.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/comments/{commentId}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
commentId | string | unique id of an assessment comment |
Query Parameters
n/a
Request Body
n/a
Response Body
Instance of AssessmentComment
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/comments/511a3942300469a9c33111a1
Example response
{
"id": "511a3942300469a9c33111a1",
"createDate": "2013-03-08T09:22:01.605+0000",
"message": "Since candidate was not responding for 3 days we will have a slight delay",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
/comments – list
Description
Enables you to get a list of comments associated with a particular assessment order.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/comments?limit={limit}&offset={offset}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
Name | Type | Description |
---|---|---|
limit | integer | number of comments to return, max is 100, default is 10 |
offset | integer | number of comments to skip while processing the results, default is 0 |
Request Body
n/a
Response Body
ListResult containing list of AssessmentComments
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/comments
Example response
{
"limit": 10,
"offset": 0,
"totalFound": 2,
"content": [
{
"id": "211a3942300469a9c33819d1",
"createDate": "2013-03-08T09:22:01.605+0000",
"message": "We are starting work on this. This assessment should take about 3 business days.",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
},
{
"id": "333a3942300469a9c33819aa",
"createDate": "2013-03-08T09:22:01.605+0000",
"message": "Candidate is not responding to emails and is not answering the calls. We can't reach him.",
"author": {
"firstName": "John",
"lastName": "Mnemonic",
"email": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
]
}
/results – insert
Description
Enables you to submit a new assessment result.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
Query Parameters
n/a
Request Body
Instance of AssessmentResult
Response Body
Instance of AssessmentResult with generated unique id and create date
Example request
curl -i -H "X-SmartToken:abc123" -H "Content-Type: application/json;charset=utf-8" -d @body.json -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/results
Example request body
{
"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": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
Example response
{
"id": "211a3942300469a9c33819d1",
"createDate": "2013-03-08T09:22:01.605+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": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
/results – get
Description
Enables you to get details of a particular assessment result.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results/{resultId}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
resultId | string | unique id of an assessment result |
Query Parameters
n/a
Request Body
n/a
Response Body
Instance of AssessmentResult
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/results/511a3942300469a9c33111a1
Example response
{
"id": "511a3942300469a9c33111a1",
"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": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
/results – list
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 | integer | number of results to return, max is 100, default is 10 |
offset | integer | 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": "[email protected]",
"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": "[email protected]",
"phone": "(123) 321 32 1231"
}
}
]
}
/results /attachments – insert
Description
Enables you to attach files to and submit a new assessment result.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results/{resultId}/attachments
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
resultId | string | unique id of result id |
Query Parameters
n/a
Request Body
To attach a file to assessment result, please ensure that the POST request has the following shape:
POST /assessments/511a3942300469a9c33819d1/results/511a3942300469a9c33819d1/attachments HTTP/1.1
Content-Type: multipart/form-data; boundary=---------------------------7d44e178b0434
Host: api.smartrecruiters.com
Content-Length: 178532
Accept: application/json;charset-UTF8
X-SmartToken: abc123
-----------------------------7d44e178b0434
Content-Disposition: form-data; name="attachment"; filename="JavaTestScore.pdf"
Content-Type: application/pdf
-----------------------------7d44e178b0434
Response Body
Instance of AssessmentResultAttachment with generated unique ID and create date
Example request
curl -i -H "X-SmartToken:abc123" -F "[email protected];type=application/pdf" -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d1/results/511a3942300469a9c33819d1/attachments
Example response
{
"id": "511a3942300469a9c33819d8",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JetLi_JavaTest.pdf"
}
/results /attachments – update
Description
Enables you to update (replace) files already submitted to assessment result.
Request
POST https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results/{resultId}/attachments/{attachmentId}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
resultId | string | unique id of result id |
attachmentId | string | unique id of an attachment |
Query Parameters
n/a
Request Body
To update a file attached to assessment result, please ensure that the POST request has the following shape:
POST /assessments/511a3942300469a9c33819d1/results/511a3942300469a9c33819d1/attachments 511a3942300469a9c33819d8 HTTP/1.1
Content-Type: multipart/form-data; boundary=---------------------------7d44e178b0434
Host: api.smartrecruiters.com
Content-Length: 178532
Accept: application/json
X-SmartToken: abc123
-----------------------------7d44e178b0434
Content-Disposition: form-data; name="attachment"; filename="JavaTestScore.pdf"
Content-Type: application/pdf
-----------------------------7d44e178b0434
Response Body
Instance of AssessmentResultAttachment with updated content
Example request
curl -i -H "X-SmartToken:abc123" -F "[email protected];type=application/pdf" -X POST https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d1/results/511a3942300469a9c33819d1/attachments/511a3942300469a9c33819d8
Example response
{
"id": "511a3942300469a9c33819d8",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JavaTestScore.pdf"
}
/results /attachments – get
Description
Enables you to get details of attachments in a particular assessment.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results/{resultId}/attachments/{attachmentId}
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
resultId | string | unique id of an assessment result |
attachmentId | string | unique id of an attachment |
Query Parameters
n/a
Request Body
n/a
Response Body
Instance of AssessmentResultAttachment
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/results/511a3942300469a9c33111a1/attachments/d11a3942300469a9c33333a1
Example response
{
"id": "511a3942300469a9c33819d8",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JetLi_JavaTest.pdf"
}
/results /attachments – list
Description
Enables you to get a list of attachments submitted to a particular assessment result.
Request
GET https://api.smartrecruiters.com/v1/assessments/{assessmentOrderId}/results/{resultId}/attachments
Path Parameters
Name | Type | Description |
---|---|---|
assessmentOrderId | string | unique id of an assessment order |
resultId | string | unique id of an assessment result |
Query Parameters
Name | Type | Description |
---|---|---|
limit | integer | number of results to return, max is 100, default is 10 |
offset | integer | number of results to skip while processing the results, default is 0 |
Request Body
n/a
Response Body
ListResult containing list of AssessmentResultAttachment
Example request
curl -i -H "X-SmartToken: abc123" -X GET https://api.smartrecruiters.com/v1/assessments/511a3942300469a9c33819d8/results/511a3942300469a9c3381aaa/attachments
Example response
{
"limit": 10,
"offset": 0,
"totalFound": 3,
"content": [
{
"id": "511a3942300469a9c33819d8",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JetLi_JavaTest.pdf"
},
{
"id": "333a3942300469a9c33819d8",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JetLi_EjbTest.pdf"
},
{
"id": "333a3942300469a9c3381aaa",
"createDate": "2013-03-13T14:44:24.108+0000",
"lastUpdateDate": "2013-03-15T10:20:12.108+0000",
"fileName": "JetLi_RubyTest.pdf"
}
]
}
Updated 6 months ago