Comeet makes this request to an endpoint that you provide to retrieve the list of tests that is available to the customer.
The list of tests is shown to the user who sets up the evaluation step as part of the position’s workflow. Each test may include a description.
In case of an error retrieving the list, the last list that was successfully retrieved will be used until the next successful response.
Request
The endpoint is defined by the evaluation partner.
GET https://www.evaluation-partner.com/api/tests
HTTP Headers
Name | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer XXXXXXXXXXXXXXXXX |
Response
Response is an array of tests.
Name | Type | Optional | Description |
---|---|---|---|
test_id | string | required | Test ID |
test_name | string | required | Test name |
test_description | string | optional | Test description (HTML); inline styling is not allowed; limited to 5000 characters |
test_preview_url | string | optional | Coming soon. When provided, the user will see a "Preview" link, allowing you to demonstrate the experience of the assessment. |
test_group | string | optional | Use this property to group tests together, eg. "Basic", "Advanced". Limited to 50 characters |
Response example
[
{
"test_id": "75489534211",
"test_name": "Java Developer / Threads",
"test_description": "Write code in multi-threaded environment",
"test_preview_url": "https://www.https://www.evaluationpartner.com/preview/75489534211",
"test_group": "Basic"
},
{
"test_id": "765653432",
"test_name": "Java Developer / Collection",
"test_description": "Write efficient Java code using collections",
"test_preview_url": "https://www.https://www.evaluationpartner.com/preview/765653432",
"test_group": "Basic"
}
]