Test Runs›
Test Runs
Update Test Run Step
Updates a single step inside a test run instance - its execution status and the remarks logged against it. All body fields are optional; send only the fields you want to change. Retrieve the test_run_step_id from the test_build_steps array returned by GET /api/v1/test-run/test-run-instance/{test_instance_id}.
PUT
/api/v1/test-run/test-run-step/{test_run_step_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_step_idstringrequired
ID of the step within the test run instance to update.
Body
application/jsonstatusenum<string>
Execution status to set on the step.
PassedFailedSkippedNot Started
remarksstring
Remarks logged against the step. Accepts HTML markup - the Test Manager UI renders this as rich text, so wrap plain text in a tag such as <p>.
Response
application/jsonOK
messagestring
Example:
"Test Run Step updated successfully"typestring
Example:
"Success"