| Field | Type | Required | Default |
|---|---|---|---|
| testId | Integer64 | Yes | - |
| Field | Type | Description |
|---|---|---|
| testId | Integer64 | Unique identifier given to each test |
| testName | String | Name of the test |
| duration | Integer | Total amount of time allocated to a test in minutes |
| status | String | Current state of test. Can be Active, Inactive |
| sections | Array | List of all sections in test |
| sectionName | String | Unique identifier given to each section |
| sectionType | String | Type of section |
| duration | Integer | Total amount of time allocated in given section in minutes |
| questions | Integer | Total number of questions in given section |
URL 1: /v3/tests/292930
Status 200 OK
Response{ "testId": 292930, "testName": "C# 6.0", "duration": 10, "questions": 5, "status": "Active", "sections": [ { "sectionName": "C# 6.0", "sectionType": "General Questions", "questions": 5, "duration": 10 } ] }
Status 401 Unauthorized Request
If required parameters have invalid values.
Response{ "statusCode": 401, "message": "Access denied due to invalid subscription key." }