Field | Type | Required | Default |
---|---|---|---|
pageNo | Integer | No | 1 |
pageSize | Integer | No | 100 |
labelsFilter | String | No | - |
Field | Type | Description |
---|---|---|
testId | Integer64 | Unique identifier given to each test |
testName | String | Name of the test |
status | String | Current state of test. Can be Active, Inactive |
count | Integer | Total number of tests created under any account in your organization. Includes active and inactive as well. |
duration | Integer | Total time allocated for the test |
questions | Integer | No of questions present in test |
labels | List of Sting | Test labels are nothing but tags or topics that can be added to every test in your account |
URL 1: /v3/tests
URL 2: /v3/tests?pageNo=1&pageSize=500
Status 200 OK
Response{ "tests": [ { "testId": 2929130, "testName": "C# 6.0", "status": "Active", "duration": 20, "questions": 10, "labels": [] }, { "testId": 3021435, "testName": "Php Web Development - Beginner", "status": "Active", "duration": 20, "questions": 10, "labels": [] }, { "testId": 3024436, "testName": "PHP 7", "status": "Inactive", "duration": 20, "questions": 10, "labels": [] }, { "testId": 3023437, "testName": "React Native", "status": "Inactive", "duration": 20, "questions": 10, "labels": [] }, { "testId": 3027438, "testName": "Angular 7", "status": "Active", "duration": 20, "questions": 10, "labels": [] } ], "count": 5 }
Status 400 Bad Request
If required parameters have invalid values.
Response{ "errors": [ "Page number is not valid integer or less than 1", "Page size is not valid integer or less than 1" ] }