POST/projects/{ProjectId}/testruns/{Id}/items/{ItemId}/log

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

Adds a new log to the test run item.

Use the operation to add a new test log to the test run item in QAComplete.

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 Read level access to test hosts.

Request Format

To add a log to the test run item, send a POST request with Content-Type multipart/form-data to the following URL:

http://{server}/rest-api/service/api/v2/projects/{ProjectId}/testruns/{Id}/items/{ItemId}/log
URL parameters

ProjectId  :  integer, required

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

Id  :  integer, required

The ID of the test run, which item you need to update.

ItemId  :  integer, required

The ID of the test run item you want to add the log to.

Body parameters

In the request body, pass the log file in the .tcLogX or .xml format.

A sample request:

POST http://yourserver.com/rest-api/service/api/v2/projects/11946/testruns/2316/items/13003/log HTTP/1.1
Host: yourserver.com
Connection: keep-alive
Content-Type: application/json
Accept: application/json
Authorization: Basic am9obkBleGFtcGxlLmNvbTpwQHNzd29yZA==
Content-Length: 146


------WebKitFormBoundaryobxsXCltsQZ5UBfL
Content-Disposition: form-data; name="File"

The log.xml file
------WebKitFormBoundaryobxsXCltsQZ5UBfL--

A sample request made by using cURL:

curl -i [email protected]:p@ssword -F [email protected] -H "Accept: application/json" http://yourserver.com/rest-api/service/api/v2/projects/119446/testruns/2316/items/13003/log

Response Format

If successful, 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.

If the test item with the specified ItemId or Id does not exist, the operation returns the File or directory not found error.

See Also

Test Runs Resources

Highlight search results