curl --request POST \
--url https://api.qa.tech/v1/run \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trigger": "API",
"actor": "<string>",
"branch": "<string>",
"commitHash": "<string>",
"commitMessage": "<string>",
"repository": "<string>",
"testPlanShortId": "<string>",
"applications": [
{
"applicationShortId": "<string>",
"environment": {
"url": "<string>",
"name": "<string>"
},
"devicePresetShortId": "<string>"
}
],
"notifications": [
{
"type": "slack",
"channel": "<string>",
"notifyOn": "failure"
}
]
}
'