Rajat Pandit
Rajat Pandit

Reputation: 63

Has anyone come across issue[]?

issue[] in UiPath. So I downloaded an extension / package from UiPath GO! named as "Jira Integrating Software". This Packages comes with several APIs to access Jira tickets.

I was working with one of these APIs called "Search by JQL". JQL is Jira Query Language comes in handy for Advance searching. The output type of this "Search by JQL" activity is issues[]. Now when I am Iterating this array it gives me an output of "UiPath.JiraSoftware.Models.Issue"

Upvotes: 2

Views: 159

Answers (1)

kwoxer
kwoxer

Reputation: 3833

You should use a For Each activity iterating the ResultArray Array you got from the Search JQL.

The following is just pseudo code! But it should work like this. Maybe the name of the property is not IssueId. That was not completely told in the document. But this you can when you inspect it by using the debug mode: enter image description here

You should also have a look on the official Jira UiPath page. This resource contains all of the concepts you will need.

Upvotes: 1

Related Questions