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.