ContributionsMost RecentMost LikesSolutionsUnexecuted Tests The number of unexecuted tests don't line up when looking at the search function versus looking at it in the Cycle Summary tab. In the Cycle Summary tab (see attachment zephyr0.png) it shows the total executions is 78, which is correct since the folder contains 78 unexecuted tests. However, when you use Zephyr API (see attachment zephyr1.png) or Zephyr Search (see attachment zephyr2.png) it only shows 26. This has happened a few times now, is there anything we can do to avoid this from happening again? Thanks! Include Test Custom Field in executeSearch We're retrieving test executions using "executeSearch", example below... https://server/rest/zapi/latest/zql/executeSearch?zqlQuery=project='Project' AND fixVersion='Release' AND executionStatus IN ('PASS','FAIL') We noticed that the result of the above command includes test fields (i.e. description, priority, etc). Now our Tests have some custom fields, is there a way to include custom fields to the results of the command above? We tried the command below but its returning empty customfields. https://server/rest/zapi/latest/zql/executeSearch?zqlQuery=project='Project' AND fixVersion='Release' AND executionStatus IN ('PASS','FAIL')&expand=customFields Thanks! Re: Tests under Folder I used the zql/executeSearch endpoint to retrieve the test cases. Thanks! Tests under Folder How do you retrieve test cases under a folder using the Server API? Re: Test Issue Type We already use ZAPI to retrieve the test executions. In fact we have another topic asking about test executions. So our questions are We used the Jira API to retrieve Tests (not Test Executions) and it returned ALL Tests even if we provided the maxRecords parameter which should have paged the results. Paging works when you try to retrieve all the other Jira types. Is there a system setting, outside of the api, where you can set the default maximum number of items returned by the API? Test Issue Type I'm trying to retrieve all tests from a Jira project. I tried retrieving the tests using the Jira API but I encountered a problem where the Jira API always returns ALL 9000 tests even if I set the max number of returned items to 200. However, the issue doesn't happen when I try to retrieve other issue types (epic, bugs, etc.). My questions are... Is the Jira API the right api to retrieve Tests? Or do I need to use ZAPI? Is there a setting where you can set the maximum number of returned tests for paging? If I need to use ZAPI, then what endpoint do I need to use? I don't see any endpoint I could use. Thanks, Chev Balcora Re: ZAPI Returns Duplicate Test Executions Hi Bibek, I used the same query in Jira and I see the same resultset as the API (see attached). My question is how do I differentiate one test execution from the other? When I open the test (MEAHW-131) I see one test execution, it was a clone of MEAHW-10 and executed as well. I have attached screenshots for you. Thanks for the help! ZAPI Returns Duplicate Test Executions We have Zephyr for Jira to manage our test executions. We also use the Zeprhyr rest api (zapi/latest/zql/executeSearch?zqlQuery=) to extract the test executions. The issue we have is that the resultset of that api call returns duplicate test executions. We inspected the identical records and there doesn't seem to be any difference between the identical records. Is this a known issue? Thanks.