Skip to main content
POST
/
v1
/
projects
/
{projectId}
/
runs
Start a test run
curl --request POST \
  --url https://api.stably.ai/v1/projects/{projectId}/runs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "playwrightProjectName": "<string>",
  "runGroupName": "<string>",
  "envOverrides": {}
}
'
{
  "runId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

projectId
string
required

Body

application/json
playwrightProjectName

Playwright project name(s) to run. Maps to --project CLI flag.

runGroupName
deprecated

Deprecated. Use playwrightProjectName instead.

envOverrides
object

Response

Default Response

runId
string
required

ID to use for polling the run status and results