Test Runs›
Test Runs
Update Test Run Status
Updates the overall execution status of a test run. This sets the status on the test run itself - it does not change the status of the individual test run instances inside it. To update the status of a single instance use the "Update Test Run Instance" API, and to update several at once use the "Bulk Update Test Run Instances" API. Retrieve the test_run_id from GET /api/v1/projects/{project_id}/test-runs.
PUT
/api/v1/test-run/status/{test_run_id}
Authorizations
Authorizationstringheaderrequired
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Path Parameters
test_run_idstringrequired
ID of the test run whose status you want to update.
Body
application/jsonstatusenum<string>required
Status to set on the test run.
PassedFailedSkippedIn ProgressNot Started
Response
application/jsonOK
messagestring
Example:
"Test Run updated successfully"typestring
Example:
"Success"