Test Runs › Create Test Run
Test Runs
Create Test Run Create Test Run
curl -- request POST \
-- url "https://test-manager-api.lambdatest.com/api/v1/test-run" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"title" : "New Test Run" ,
"objective" : "Sample Discreption" ,
"test_run_instances" : [ ] ,
"tags" : [
"tag1" ,
"tag2" ,
"tag3"
] ,
"project_id" : "sample project id" ,
"is_auteur_generated" : false
} '
{
"message" : "Test Run created successfully" ,
"type" : "Success" ,
"id" : "test_run_id"
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body application/json is_auteur_generated boolean
Response 200▼
application/json OK
message string
Example: "Test Run created successfully"
type string
Example: "Success"
id string
Example: "test_run_id"
curl -- request POST \
-- url "https://test-manager-api.lambdatest.com/api/v1/test-run" \
-- header "Authorization: Basic <encoded-value>" \
-- header "Content-Type: application/json" \
-- data ' {
"title" : "New Test Run" ,
"objective" : "Sample Discreption" ,
"test_run_instances" : [ ] ,
"tags" : [
"tag1" ,
"tag2" ,
"tag3"
] ,
"project_id" : "sample project id" ,
"is_auteur_generated" : false
} '
{
"message" : "Test Run created successfully" ,
"type" : "Success" ,
"id" : "test_run_id"
}