CreateTestsuite

This method can be used for the following functionality: Create a new test suite.

Parameters

The following URL, Headers and Parameters are required for requests to this API endpoint. Where a parameter is optional, it will be indicated. Otherwise treat all parameters as mandatory.

Headers

POST /api/ss/testsuite HTTP/1.1
Host: localhost:3000
X-SSAPI-KEY: API
KeyContent-Type: application/json
Connection: close

Query

name (string)

Name of the test suite.

Example:

{   
    "name": "..."
}

description (string)

Brief description of the test suite.

Example:

code (string) (optional)

Code for the test suite.

Example:

sort_order (number) (optional)

Sort Order to apply to the test suite.

Example:

is_visible_on_project_requests (boolean) (optional)

Whether this test suite should be displayed and made available to be selected when a user is requesting a project.

Example:

tags (array of strings)

Tags for the test suite.

Example:

Example

The following example is a cURL request to create a new test suite.

Request

Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.

Response

Response contains a status.

Last updated