curl --request POST \
--url https://api.stably.ai/v1/testSuite/{testSuiteId}/run \
--header 'Content-Type: application/json' \
--header 'authorization: <api-key>' \
--data '
{
"numberOfWorkers": 64,
"retries": 123,
"repeats": 123,
"operationDelayMs": 123,
"testTimeoutMs": 123,
"testMatch": {
"glob": "<string>",
"regex": "<string>"
},
"setupTestId": "<string>",
"teardownTestId": "<string>",
"beforeEachTestId": "<string>",
"afterEachTestId": "<string>",
"notificationProfile": "PROJECT",
"environment": "PRODUCTION",
"variableOverrides": {
"TEST_VAR": "test",
"TEST_VAR_2": {
"value": "test",
"sensitive": true
},
"JSON_VAR": {
"value": {
"attribute": "value",
"anotherAttribute": "anotherValue"
}
}
},
"metadata": {
"git": {
"branch": "<string>"
},
"note": "This is a note"
},
"urlReplacements": [
{
"original": "<string>",
"replacement": "<string>"
}
]
}
'