post https://{hostname}/test-management/v3/functional/test-suites
Creates an empty test suite. To add objects to the newly created test suite, run the Add test cases to a test suite and Add variables to a test suite operations.
Responses
Creates an empty test suite. To add objects to the newly created test suite, run the Add test cases to a test suite and Add variables to a test suite operations.
xxxxxxxxxx
10curl --request POST \
--url https://hostname/test-management/v3/functional/test-suites \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"isLocked": true,
"isStateful": true
}
'
xxxxxxxxxx
19{
"configs": {
"propertyManager": {
"propertyId": 1234,
"propertyName": "config_user8",
"propertyVersion": 4
}
},
"createdBy": "jperez",
"createdDate": "2021-07-06T10:28:13+0000",
"executableTestCaseCount": 1,
"isLocked": false,
"isStateful": false,
"modifiedBy": "jperez",
"modifiedDate": "2021-07-06T10:29:20+0000",
"testSuiteDescription": "This test suite performs basic check of www.user8.example.com",
"testSuiteId": 284,
"testSuiteName": "www.user8.example.com test suite"
}