Is it possible to get all the Jira issues related to asset objects? I have found this method called "GetObjectConnectedTickets," but I have to pass the object ID. My requirement is to retrieve all the Jira issues related to the asset and get only the open issues along with asset details. Could you please guide me to the correct API method? Thank you for your help.
Hi, @BIJU VARGHESE
Looks like you're looking for that:
Looking at description - it's what you asked. And this question is marked as Solved. Hope it will help
Hi Evgeniy, Thanks for the prompt reply. I am looking for all the open issues related to the AssetObject. The link you sent me requires us to pass the issue ID. Thanks for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then you can try aqlFunction, description is here:
https://support.atlassian.com/jira-service-management-cloud/docs/assets-jql-functions/
Example:
resolution is not EMPTY AND "Affected VMs" in aqlFunction('objectType = "Virtual Machine"')
"Affected VMs" - it's custom field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your message. I appreciate your help. Essentially, I need to include all the selected issue fields and the selected organization object field in my API. I'm wondering how I can display the organization-related object field.
Below is my API.
rest/api/2/search?jql=project in ("Test")%26status in ("Open","In Progress","To Do") &fields=issue,status,name,key,description,assignee
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.