Skip to main content
POST
/
run
/
{shortId}
cURL
curl --request POST \
  --url https://api.qa.tech/v1/run/{shortId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "failedOnly": true,
  "projectTestCaseIds": [
    "<string>"
  ]
}
'
{
  "success": true,
  "run": {
    "id": "<string>",
    "shortId": "<string>",
    "url": "<string>",
    "testCount": 123
  }
}

Authorizations

Authorization
string
header
required

Project API token from Settings > Integrations > API. The token is scoped to a specific project.

Path Parameters

shortId
string
required

Body

application/json
failedOnly
boolean
projectTestCaseIds
string[]

Response

The request has succeeded.

success
boolean
required
run
object
required