Test Runs›Update Test Run Step
Test Runs
Update Test Run Step
Update Test Run Step
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/test-run-step/{test_run_step_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"status": "Passed",
"remarks": "Sample remarks",
"attachment_urls": [
"url1",
"url2"
]
}'
{
"message": "Test Run Step updated successfully",
"type": "Success"
}
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
Response
application/jsonOK
messagestring
Example: "Test Run Step updated successfully"
typestring
Example: "Success"
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/test-run-step/{test_run_step_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"status": "Passed",
"remarks": "Sample remarks",
"attachment_urls": [
"url1",
"url2"
]
}'
{
"message": "Test Run Step updated successfully",
"type": "Success"
}