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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.