Test Runs›Update Test Run By ID
Test Runs
Update Test Run By ID
Update Test Run By ID
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"id": "<id>",
"title": "<title>",
"objective": "<objective>",
"tags": [],
"is_auteur_generated": true,
"type": "<type>",
"test_run_instances": [],
"project_id": "<project_id>"
}'
{
"message": "Test Run 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_idstringrequired
Body
application/jsonis_auteur_generatedboolean
Response
application/jsonOK
messagestring
Example: "Test Run updated successfully"
typestring
Example: "Success"
curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"id": "<id>",
"title": "<title>",
"objective": "<objective>",
"tags": [],
"is_auteur_generated": true,
"type": "<type>",
"test_run_instances": [],
"project_id": "<project_id>"
}'
{
"message": "Test Run updated successfully",
"type": "Success"
}