...
GET (Using Query Parameters)
Info | ||
---|---|---|
| ||
http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype/{testTypeId} http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype?testTypeName={name} |
...
Using http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype/10001, we receive back a JSON response ofwith one Test Type object:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
{ "testTypeName": "Unit Test", "testTypeId": 10001 } |
Using http://host:port/flexdeploy/rest/v1/administration/testautomation/testtype?testTypeName=Functional we receive back a JSON response ofresponse with a list of all the Test Types containing the passed name:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
[ { "testTypeName": "Functional Test", "testTypeId": 10002 } ] |