Demolag
3 months agoNew Contributor
REST API - Update Test Step Execution Status with DataTable rows
Hi,
I've been trying to figure out how to update the execution status for test cases with datatable rows.
The example from the REST API page for Zephyr Server for PUT method on /testrun/{testRunKey}/testcase/{testCaseKey}/testresult shows how to update for specific test steps:
{
"scriptResults": [
{
"index": 0,
"status": "Fail",
"comment": "This step has failed."
}
]
}
But when I try to add the parameterSetId field, I get the error Unrecognized field "parameterSetId".
Is there another field or another REST API method I should use?