CreateTestsuite
This method can be used for the following functionality: Create a new test suite.
Last updated
{
"description": "..."
}{
"code": "..."
}{
"sort_order": 1
}{
"is_visible_on_project_requests": false
}{
"tags": ["...", "..."]
}curl -X POST 'https://localhost:3000/api/ss/testsuite' -H 'Host: localhost:3000' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close' -d '{
"name": "5-day Web App Pentest",
"description": "Methodology for a 5-day web app pentest.",
"code": "WEBAPP-5DAY",
"sort_order": 1,
"is_visible_on_project_requests": false,
"tags": ["Web App", "5-days"]
}'{
"status": "Testsuite Created",
"testsuite": {
"id": "...",
"created": "...",
"name": "...",
"description": "...",
"code": "...",
"sort_order": 1,
"is_visible_on_project_requests": false,
"tags": [
"..."
]
}
}