POST
/
projects
/
{projectId}
/
runs
curl --request POST \
  --url https://app.qa.tech/api/projects/{projectId}/runs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: <content-type>' \
  --data '{
  "integrationName": "CircleCI",
  "testPlanShortId": "abc123"
}'
{
  "runId": "abc123",
  "status": "created"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string
required

The media type of the request body. Should be set to application/json

Path Parameters

projectId
string
required

The ID of the project

Body

application/json
integrationName
string
required

Human readable name of what triggered this test, can be the name of the CI/CD tool

testPlanShortId
string

The short ID of the test plan to run

Response

201
application/json
Successfully created run
runId
string
status
string