How to get the FolderID for an existing folder
According to the DC REST API, there is no GET method to folders, yet the PUT method expects a folder ID. How do I find this folder ID? Also, if I have to delete and recreate the folder for getting the ID from the POST response, how do I delete the folder?44Views0likes1CommentREST 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?90Views0likes2CommentsGetting 500 error on connecting with zephyr via Playwright
Error in reporter Error: Status: 500 Headers: Object [AxiosHeaders] { date: 'Mon, 23 Jun 2025 07:08:53 GMT', 'content-type': 'text/html;charset=UTF-8', 'content-length': '346', connection: 'close', 'x-arequestid': '968x12955384x3', 'x-anodeid': 'node1', 'referrer-policy': 'strict-origin-when-cross-origin', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff', 'x-frame-options': 'SAMEORIGIN', 'content-security-policy': "frame-ancestors 'self'", 'strict-transport-security': 'max-age=31536000' } Data: '<html>\n' + '<head><title>JIRA — Internal Server Error</title>\n' + '<meta name="decorator" content="none"/>\n' + '</head><body>\n' + '<h1>JIRA — Internal Server Error</h1>\n' + '<p>Error reference: 0dac045f-5d1b-4371-905b-a4c9f24efce7</p>\n' + '<p>Unable to render full error details at this time.\n' + 'Please consult the error logs for more information.</p>\n' +81Views0likes2CommentsVersion ID not found when updating test case execution
Step: Send PUT request to https://jira.example.com/rest/atm/1.0/testrun/test_cycle_key/testcase/test_case_key/testresult with payload { "version": "version_id" } Response: code 400 { "errorMessages": [ "The value version_id was not found for field version on project project_key." ] } Before sending the request I get the version_id from Jira by version name Are there any other conditions to make version_id recognizable in Zephyr?46Views0likes1CommentDelete Unused Labels fails with 500 error
Hi all, Jira 8.20.11 + zephyr scale 9.27. Test library / Configuration / Labels. The first problem. Labels list opens for 12 seconds. And very slowly scrolls. Click on "Delete unused labels" link, confirm the question. The second (and main) problem - "Oops! Something went wrong". And I get the "500 error" from nginx proxy on "/rest/tests/1.0/label/deleteUnusedLabels" request. Any ideas how to fix it and delete all unused label finally?38Views0likes1CommentDatacenter API: result of call does not provide all customfield values
Dear community and support team, I want to extract the customfield values of test cases using the following API call: https://tickets.URL.com/rest/atm/1.0/testcase/search?fields=key,customFields&query=projectKey IN ("WEBQA", "DTD", "DTG") It works like a charm, but in the results I only get two of the three customfields returned. "Is regression" and "Test Type" get returned, but "Platform" does not: Is there a difference in the field configuration that causes this? I can see that the two working fields have a red * as the only direct visible difference. Thank you very much and best regards, Jonas32Views0likes1CommentUpdate testrun with server REST API
I have created a testrun using the server REST API and would like to add more test cases to it. i do not see any API to modify an existing TestRun (Test Cycle) once it has been created. Is there a way to update the Test Run after it was created? /testrun has a POST API but the /testrun/{testRunKey} only has DELETE and GET69Views0likes1CommentZephyr Scale Server API Allows Duplicate Custom Field Options - UI Does Not
"Hello, I have encountered an issue with custom field options when using the Zephyr Scale Server API. Specifically, I noticed that: Through the API, I am able to add duplicate custom field options without any validation or error. Through the UI, the system correctly prevents adding duplicate options. This behavior is inconsistent between the API and the UI. Could you help with the following? Is it expected that the API allows duplicate custom field options, while the UI does not? How can I prevent duplicate options from being added when using the API? Is there any existing validation I can implement?32Views0likes1CommentUnable to View Custom Test Execution Fields in Zephyr Test for Jira API
Hello, I’m encountering an issue with Zephyr Test for Jira hosted on our data server. When using the API endpoint /rest/atm/1.0/testrun/search?query=projectKey="KEY", I am unable to retrieve custom test execution fields in the API response. The standard test run details are returned as expected, but the custom fields I’ve added to the test execution are missing from the response. I've double-checked the configuration, and the custom fields appear correctly in the Jira interface. Has anyone experienced this or know how to get the custom test execution fields through the API? Any insights would be greatly appreciated!Solved81Views0likes2CommentsUpdate Test Result on Zephyr Scale Server
hey, we use Zephyr Scale Server and I want to not only be able to post executions/test results but also to update them via the API. How can I update a Test Result? In Zephyr Cloud and Squad there is an API for this. Why does the Zephyr Scale Server Version still have the old 1.0 API which is really outdated? Will Zephyr Scale Server ever get updated APIs?486Views0likes9Comments