Adds a new report to the test run item.
Use the operation to add a new report 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 report to the test run item, send a POST request with Content-Type
multipart/form-data to the following URL:
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 report to.
Body parameters
In the request body, pass the report .mht file.
A sample request:
POST http://yourserver.com/rest-api/service/api/v2/projects/11946/testruns/2316/items/13003/report HTTP/1.1
Host: yourserver.com
Connection: keep-alive
Content-Type: application/json
Accept: application/json
Authorization: Basic am9obkBleGFtcGxlLmNvbTpwQHNzd29yZA==
Content-Length: 156
------WebKitFormBoundaryobxsXCltsQZ5UBfL
Content-Disposition: form-data; name="File"
The sample-report.mht 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/report
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.