Skip to main content
Test RunsUpdate Test Run By ID
TestMu AI
StatusCommunityBlog
Test Runs

Update Test Run By ID

Update Test Run By ID

PUT
/api/v1/test-run/{test_run_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/json
idstring
titlestring
objectivestring
tagsarray
is_auteur_generatedboolean
typestring
test_run_instancesarray
project_idstring

Response

application/json

OK

messagestring
Example: "Test Run updated successfully"
typestring
Example: "Success"
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"
}