Currently i can update test cases by test point ID. But in my testcases i have only testcase ID, I want to update the test cases throught rest api and using test cases ID
Using test point ID i can update the outcome (Test result) but i want to update the result using test cases ID
curl 'https://dev.azure.com/yec-proj/deslor/_apis/testplan/Plans/10085/Suites/91235/TestPoint?includePointDetails=true&returnIdentityRef=true' \
-X 'PATCH' \
-H 'authority: dev.azure.com' \
-H 'accept: application/json;api-version=6.1-preview.2' \
-H 'accept-language: en-US,en;q=0.9' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-H 'origin: https://dev.azure.com' \
-H 'pragma: no-cache' \
-H 'sec-ch-ua-mobile: ?0' \
-H 'sec-ch-ua-platform: "Windows"' \
-H 'sec-fetch-dest: empty' \
-H 'sec-fetch-mode: cors' \
-H 'sec-fetch-site: same-origin' \
-H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36' \
-H 'x-tfs-session: 96a5552-71f8-4a1f-96ed-88fd785520af8' \
-H 'x-vss-reauthenticationaction: Suppress' \
--data-raw '[{"id":270463,"results":{"outcome":2}}]' \
--compressed
Can anyone help me to find out the solutions?