For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
Test RunsGet Test Run By ID
TestMu AI
StatusCommunityBlog
Test Runs

Get Test Run By ID

Get Test Run By ID

GET
/api/v1/test-run/{test_run_id}
Get Test Run By ID
curl --request GET \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}" \
--header "Authorization: Basic <encoded-value>"
{
"id": "testrun_id",
"title": "New Test Run",
"objective": "Sample Discription",
"test_run_instances": [],
"tags": [
"tag1",
"tag2",
"tag3"
],
"project_id": "project_id",
"is_auteur_generated": false
}

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/json

OK

idstring
Example: "testrun_id"
titlestring
Example: "New Test Run"
objectivestring
Example: "Sample Discription"
test_run_instancesarray
tagsstring[]
Example:
["tag1","tag2","tag3"]
project_idstring
Example: "project_id"
is_auteur_generatedboolean
Example: false
Get Test Run By ID
curl --request GET \
--url "https://test-manager-api.lambdatest.com/api/v1/test-run/{test_run_id}" \
--header "Authorization: Basic <encoded-value>"
{
"id": "testrun_id",
"title": "New Test Run",
"objective": "Sample Discription",
"test_run_instances": [],
"tags": [
"tag1",
"tag2",
"tag3"
],
"project_id": "project_id",
"is_auteur_generated": false
}