Test types can be accessed using GET service.
Include Page |
---|
| REST V1 Authentication |
---|
| REST V1 Authentication |
---|
|
Each function returns a JSON test type object. The test type object is an object that has these attributes.
...
...
GET
GET (Using Query Parameters)
...
The information about available Test Types can be accessed through this method. It returns the name and id of all available Test Types. You can also search by name using query parameters to access a specific Test Type's information.
Request
Attributes | Type | Description |
---|
testTypeName | String | Contains ignore case search |
Response
Attributes | Type | Description |
---|
testTypeId | Long | Id of test type |
testTypeName | String | Name of test type |
Example Output
Code Block |
---|
language | js |
---|
theme | Eclipse |
---|
title | Test types |
---|
|
[
{
"testTypeName": "Test1Unit Test",
"testTypeId": 10001
},
{
"testTypeName": "Test2Functional Test",
"testTypeId": 10002
},
{
"testTypeName": "Test3Integration Test",
"testTypeId": 10003
}
] |
...