I am using Jira Software Integration for UiPath and I downloaded it from UiPath GO!. I am using Search JQL query and in result I am receiving this object type.
UiPath.JiraSoftware.Models.Issue for each item in issues
I need to convert this type of object to a sting value
Please check the User manual (that can be found on UiPath Go, under Resources tab) for more info regarding the Issue object.
You can use the resulted array of objects with a Foreach and access all properties, please make sure to change the type of the foreach item from Object to Issue)
In order to obtain the attachments, use Get Issue Attachments activity.
Loop through the resulted array of attachment objects using Foreach activity with item of type Attachment. The “Content” property of attachment object contains the Url from where the attachment can be downloaded (if you open this URL in browser, it will automatically downlod the file).
In the workflow you can either use some VB code to download the file from URL Download File From URL Code VB.NET - Stack Overflow or just use Open Browser Activity with your Jira Url, login, and then navigate to that attachment URL, and use UI automation to click download.
Hy @DanielaD
I read too quickly sorry.
It works perfectly (just need to deserialize the output to get the value for drop down list field in Jira)
Many thanks for your help