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.
I can get a list of issues of type "Epic" with the following endpoint:
https://<myorg>.atlassian.net/rest/api/2/search?jql=issuetype=Epic
How do I construct the jql such that I can get a list of issues where a custom field has a particular value?
I have added a custom field of type "short text" with name "Power PPM Identifier". The internal name of this field is
customfield_10032
If I query the REST API for a particular Epic, I can see the value like this:
"customfield_10032": "6de4d40d-0ba2-4a8c-bf04-2642d62768f9",
https://<myorg>.atlassian.net/rest/api/2/search?jql=customfield_10032=6de4d40d-0ba2-4a8c-bf04-2642d62768f9
{
"errorMessages": [
"Field 'customfield_10032' does not exist or you do not have permission to view it."
],
"warningMessages": []
}
https://<myorg>.atlassian.net/rest/api/2/search?jql="Power PPM Identifier[Short text]" ~ 6de4d40d-0ba2-4a8c-bf04-2642d62768f9
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.