Skip to main content
POST
/
apps
/
{app_id}
/
workflows
/
{workflow_id}
/
tests
/
runs
Run Tests
curl --request POST \
  --url https://api.example.com/apps/{app_id}/workflows/{workflow_id}/tests/runs \
  --header 'Content-Type: application/json' \
  --data '
{
  "workflow_version_number": 123,
  "execute_failed_only": true
}
'
"<unknown>"

Path Parameters

app_id
string
required

The ID of the app

workflow_id
string
required

The ID of the workflow

Body

Data to run multiple workflow tests

workflow_version_number
number

Version number of the workflow on which to run the test

execute_failed_only
boolean

Flag to execute only the failed workflow tests

Response

200 - application/json

The response is of type unknown.