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
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.
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.