Is there a way to retrieve objectives by feature ids?
Hi @Chris Cheah the following query will likely satisfy your need:
curl -X GET 'https://instance.jiraalign.com/rest/align/api/2/Objectives?$select=id&filter=featureIds%2Fany%28d%3A%20d%20eq%20557%29' -H 'accept: */*' -H 'Authorization: bearer MyObfuscatedToken'
The teardown is as follows:
featureIds/any(d: d eq 557)
The API call result should look like this:
[{"id":555},{"id":571}]
Each number in this JSON response body is the ID of a related Objective.
Please refer to Help Center articles 10X: API 2.0 for further details on filters, query syntax, and encoding.
Exactly what I am looking for!
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.