Hello I'm trying to update the outcome of a test point with the azure devops rest api using postman from active to passed
This is the request i'm using:
PATCH https://dev.azure.com/fodservices/Training%20projects/_apis/testplan/Plans/70152/Suites/70154/TestPoint?api-version=6.1-preview.2
And this is the body
{
"value" : [
{
"id": 11431,
"isActive": false,
"results": {
"outcome": "passed"
}
}
]
}
I'm getting a 400 bad request error and the message is : Value cannot be null.\r\nParameter name: TestPointUpdateParams Anyone can help what I'm doing wrong please

