You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi:
I am looking for an API to list all the linked capabilities under the EPIC and all the Features under the requested capabilities.
I tried the
/align/api/2/Epics/{id}
and
/align/api/2/Capobilities/{id} endpoint but couldn't see the required information.
Any pointer will be of much help.
Thanks.
Equivalently, the same principle can be applied to the Features endpoint.
Making a GET call towards it, along with a filter for the parentID -- matching the Capability of interest -- will return all IDs of the related features.
curl -X GET 'https://instance.jiraalign.com/rest/align/api/2/Features?$select=id&filter=parentID%20eq%202326' -H 'accept: */*' -H 'Authorization: bearer MyObfuscatedToken'
The result should look like this:
[{"id":8829},{"id":10348}]
Hi @Sam V the following query will likely satisfy your need:
curl -X GET 'https://instance.jiraalign.com/rest/align/api/2/Capabilities?$select=id&filter=parentID%20eq%202221' -H 'accept: */*' -H 'Authorization: bearer MyObfuscatedToken'
The teardown is as follows:
The result should look like this:
[{"id":2222},{"id":2224},{"id":2355}]
Each number in this JSON response is an ID of a related Capability.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.