retrieve Zephyr Scale test cases linked to a Jira Issue
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
retrieve Zephyr Scale test cases linked to a Jira Issue
Currently, Jira support a way to link the test cases created in the Zephyr Scale to be linked to an Jira Issue created in Jira. How can I query the Zephyr Scale API (https://api.zephyrscale.smartbear.com/v2) to retrieve list of test cases for a specific Jira issue?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I've not used it yet but the endpoint below seems to be what you need:
"/issuelink/{issueKey}/testcases"
DESCRIPTION
Retrieve all Test Cases linked to an Issue.
PARAMETERS
issueKeyrequired, string (The key of the linked Issue)
------------------------------------------
Please give kudos if I have helped or accept as solution if appropriate
Feel free to connect with me on LinkedIn: https://www.linkedin.com/in/andrew-barbet-548a234/
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The above endpoint seems come from Zephyr Scale server version, not the Zephyr Scale cloud version. I have tried but I got 'Resource identified by path '/issuelink/JIRATEST2-188/testcases', does not exist. The JIRATEST2-188 is one of my jira issue key, the full URL path I used is "https://api.zephyrscale.smartbear.com/issuelink/JIRATEST2-188/testcases"
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't know if there's a difference in using the API between Cloud and Server (I'm on the Server version) but I have to prefix the endpoints with this URL...
https://jira.[MySite].com/rest/atm/1.0/
An example of how it works for the testresults endpoint which I have used before successfully
https://jira.[MySite].com/rest/atm/1.0/testrun/[MyKey]/testresults
And an example of how I think the endpoint below would work (but I've not tested)
https://jira.[MySite].com/rest/atm/1.0/issuelink/[issueKey]/testcases
Good luck.
------------------------------------------
Please give kudos if I have helped or accept as solution if appropriate
Feel free to connect with me on LinkedIn: https://www.linkedin.com/in/andrew-barbet-548a234/
