Hello! I’m currently working on getting our automatization result from other platfom and passing them into Testiny.
I’ve been using https://app.testiny.io/api/v1/automation for it, since, as i see, it is the only option to add detailed information about every test case.
https://app.testiny.io/api/v1/atm-testrun has only overall failes and etc…
My question is - is there a way to tie a result to an actual test case in Testiny? Our Automated tests represent our tests in Testiny, and it would be nice to be able to add automation results to their test case to have a more solid test history. And, also, is there a way to link a test plan which an automation represents?
I tried the next body for my request:
{
“projectId”: 1,
“source”: “api-request”,
“results”: [
{
“ts”: 946684800000,
“title”: “Verify clicking Provider Login button opens provider login page”,
“key”: “696”,
“duration”: 0,
“status”: “passed”,
“fields”: [
“some_name”
],
“steps”: [
{
“id”: “string”,
“title”: “string”
}
]
}
],
“fieldNames”: [
“some_name”
],
“runTitlePattern”: “V1 - Third Test Plan (OLD UI) 11/05/2025”,
“noFieldCreate”: false,
“noSourceCreate”: false,
“useServerTime”: true,
“milestoneId”: 0
}