This question is in reference to Atlassian Documentation: Searching for Issues
Hello ,
I have one question. I want to fetch only description portion of JIRA ticket from a given JIRA ticket to me. I am not able to find any JQL search api that can do this. I also tried to do it using Zephyr but I didn't find any ZQL that can do this . Can you tell me which api of JIRA search query can do this ?
Thanks,
Neel Desai
JQL returns a list of issues that match criteria, it has nothing to say about the data on the issues it returns.
That's handled by the reporting mechanism. In this case, it's REST, which by default hands you the whole issue. But you can ask it to give you only the fields you want (it'll still pass over a bit more information, but not a lot)
Try adding &fields=description to the REST url you are hitting. (The docs give the example of &fields=id,key if that helps explain more of the format)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just want ticket's description and this api is giving all the details. I tried it .But I just want ticket's description.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would that be a big deal if you just parse the results?
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.