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

NameValue
Content-Typeapplication/json
AuthorizationBearer XXXXXXXXXXXXXXXXX

Response

Response is an array of tests.

NameTypeOptionalDescription
test_idstringrequiredTest ID
test_namestringrequiredTest name
test_descriptionstringoptionalTest description (HTML); inline styling is not allowed; limited to 5000 characters
test_preview_urlstringoptionalComing soon.
When provided, the user will see a "Preview" link, allowing you to demonstrate the experience of the assessment.
test_groupstringoptionalUse 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"      
    }
]