Get list of available tests
Purpose
This API endpoint provides the available test templates of an assessment partner to the softgarden ATS. This endpoint is called to retrieve all available tests and display them in the softgarden ATS. The endpoint should only return tests which are available for the specific customer identified by the bearer token.
The URL can be configured by softgarden but needs to be provided in the configuration process.
HTTP-Method
GET
Path
3rd party provider path
Authentification
Bearer Token
Example curl call
1 2 |
curl --location --request GET '[3rd party api endpoint for loading tests]' \ --header 'Authorization: Bearer [token]' |
Expected response:
1 2 3 4 5 6 7 8 9 |
[ { "testId": "123456789", //3rd party identifier for a test "testName": "Developer Test", //Test name }, { ... } ] |
Propertylist
Property | Type | Description |
testId | string | 3rd party identifier for the test template |
testName | string | Test name (will be displayed in the softgarden ATS) |