DELETE/projects/{ProjectId}/testsets/{Id}/items/{Seq}

Applies to QAComplete 14.3, last modified on February 19, 2024

Deletes a test set item from the specified position in a test set.

Use the operation to delete a test set item from the specified position in a test set specified by its ID.

The operation will only remove the test set item. It will not remove the test, to which the test set item corresponds, from the Test Library.

Authentication

Basic authentication using a user’s login and password. See Authentication for details.

Security Rights

The authenticating user must belong to a security group that has the Update privilege for Test Sets.

Request Format

To delete a test set item, send a DELETE request to the following URL:

http://{server}/rest-api/service/api/v1/projects/{ProjectId}/testsets/{Id}/items/{Seq}
URL parameters

Id  :  integer, required

The ID of the test set, whose item you want to delete.

ProjectId  :  integer, required

The ID of the project, to which the test set belongs.

Seq  :  integer, required

The ordinal number of the test set item you want to delete.

A sample request:

DELETE http://yourserver.com/rest-api/service/api/v1/projects/11873/testsets/182/items/2 HTTP/1.1
Host: yourserver.com
Connection: keep-alive
Content-Type: application/json
Accept: application/json, text/script, */*
Authorization: Basic am9obkBleGFtcGxlLmNvbTpwQHNzd29yZA==

A sample request made by using cURL:

curl -u [email protected]:p@ssword http://yourserver.com/service/api/v1/projects/11873/testsets/182/items/2

Response Format

On success, the operation returns an empty response with HTTP status code 200.

Error responses

If the operation fails, it returns the appropriate status code and (optionally) the error description in the response body.

If the project with the specified ProjectId does not exist or the authenticating user does not have rights to access the project, the operation returns the Access is denied error.

See Also

Test Sets Resources

Highlight search results