Test Runs›Bulk Update Test Run Instances
Test Runs
Bulk Update Test Run Instances
Bulk Update Test Run Instances
Bulk Update Test Run Instances curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}/bulk-update" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"test_run_instances": [
{
"id": 55793,
"status": "Passed",
"assignee": 1000167238
}
]
}'
{
"message": "Test Run Instances 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
Response
application/jsonOK
messagestring
Example: "Test Run Instances updated successfully"
typestring
Example: "Success"
Bulk Update Test Run Instances curl --request PUT \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}/bulk-update" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"test_run_instances": [
{
"id": 55793,
"status": "Passed",
"assignee": 1000167238
}
]
}'
{
"message": "Test Run Instances updated successfully",
"type": "Success"
}