Is there a way for me to fetch data from deleted test cases through the REST API?
Hi,
Yes, you can simple specify includeDeleted: true
when finding test cases and also deleted test cases will be returned:
POST /api/v1/testcase/find
{
"includeDeleted": true,
...
}
See the API doc for more info.
Regards,
Alex