Starting project group
GET/project/:ProjectId/start/area/:AreaId
Starting only specific group of Tests from project
Request
Path Parameters
ProjectId stringrequired
A unique project ID
Example: 5e9602e7a39e5a46428b457f
AreaId stringrequired
A unique area/group ID
Example: 55ae166c25b395537a8b6029
Query Parameters
keep-alive boolean
Maintain the connection after starting the tests
Example: false
continue boolean
Send the partial result and move on?
Example: false
tests string[]
Array of selected Test IDs to run
Responses
- 200
Job starts successfully
- application/json
- Schema
- Example (from schema)
Schema
projectId string
A unique Project ID
Example:
5e95ddf7a39e5a44428b4581
jobId string
A unique ID for each Job
Example:
5e9602e7a39e5a46428b457f
start string
Value ok
means your tests have successfully started
Example:
ok
results string
The URL where you can view your results
Example:
https://www.testomato.com/api/project/5e95ddf7a39e5a44428b4581/job/5e9602e7a39e5a46428b457f/results?apikey=4PJAOwTK
{
"projectId": "5e95ddf7a39e5a44428b4581",
"jobId": "5e9602e7a39e5a46428b457f",
"start": "ok",
"results": "https://www.testomato.com/api/project/5e95ddf7a39e5a44428b4581/job/5e9602e7a39e5a46428b457f/results?apikey=4PJAOwTK"
}