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",
  "applications": {
    "app-short-id-1": {
      "environment": {
        "url": "https://preview-123-frontend.vercel.app",
        "name": "PR-123-Frontend"
      }
    },
    "app-short-id-2": {
      "environment": {
        "url": "https://preview-123-backend.vercel.app",
        "name": "PR-123-Backend"
      }
    }
  }
}'
{
  "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

Example:

"application/json"

Path Parameters

projectId
string
required

The ID of the project

Body

application/json

Response

201
application/json

Successfully created run

The response is of type object.