Field | Type | Required | Default |
---|---|---|---|
pageNo | Integer | No | 1 |
pageSize | Integer | No | 100 |
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. |
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" }, { "testId": 3021435, "testName": "Php Web Development - Beginner", "status": "Active" }, { "testId": 3024436, "testName": "PHP 7", "status": "Inactive" }, { "testId": 3023437, "testName": "React Native", "status": "Inactive" }, { "testId": 3027438, "testName": "Angular 7", "status": "Active" } ], "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" ] }