Unable to install jira get activities

Hello,

My requirement is to filter jira confluence tickets with specific work order and get open ticket.
previously i used to get those via UiPath teamjiraget.activities package.
and after downloading this package we able to drag direct filter activity where we can provide API link with username and password and activity provides required value after supplying filter.

but now that activity i can see not compatible with windows.

can you please help me to download that activity or please suggest me another way to achieve my goal.
@Cristian_Negulescu

@Mathkar_kunal

The UiPathteam activity is supported on Windows legacy

for windows you can use integration services

create a jira connection using integration services and you can use all activities in the above link

cheers

1 Like

Hi @Mathkar_kunal

UiPathTeam.JiraGet.Activities is legacy and Windows-Legacy only, so it won’t work in modern Windows projects.

  • UiPath Jira Integration Service connector (recommended): filter issues using JQL and get open tickets.
  • UiPath.Jira.Activities (v6.x): use built-in Jira activities with JQL.
  • HTTP Request activity: call Jira REST API directly with JQL (basic auth / API token).
1 Like

we have os - windows server 2022 only
image

It’s not the OS.
Your project is Windows (modern), and UiPathTeam.JiraGet.Activities works only with Windows-Legacy projects. Use the Jira Integration Service, UiPath.Jira.Activities, or HTTP Request instead.

ok, understood.
we dont use orchestrator so i can’t use Jira connector.
by using UiPath.jira.activities and with http can i filter with work order and open ticket?
if yes then how?

Yes, you can do it without Orchestrator
Yes. Use JQL filtering.

With UiPath.Jira.Activities, use Search Issues and set JQL like:

project = ABC AND statusCategory != Done AND “Work Order” ~ “WO12345”

Or use HTTP Request to Jira REST API with the same JQL. Authentication is via Jira email + API token.

1 Like

thank you i will try this and let you know

could you please update what changes i need to do i my project settings so i ca downaod this package

can you explain more about above thread?

My requirement is to filter jira confluence tickets with specific work order and get open ticket.
previously i used to get those via UiPath teamjiraget.activities package.
and after downloading this package we able to drag direct filter activity where we can provide API link with username and password and activity provides required value after supplying filter.

but now that activity i can see not compatible with windows.

can you please help me to download that activity or please suggest me another way to achieve my goal.

Use HTTP Request (UiPath.WebAPI.Activities) with Jira REST API instead.
Call the search endpoint with JQL, then parse the JSON response.

if “https://s2ap****.com/jira/rest/api/2”

if this is my url then how can i use jql in it?
could you give me example if i need only open tikcets
and how to parse json
can you explain me in short

Use this URL for open tickets:
https://s2ap****.com/jira/rest/api/2/search?jql=status=Open

In HTTP Request, set method GET and authenticate (Basic with email + API token).

Then use Deserialize JSON and read:

json(“issues”)(0)(“key”)
json(“issues”)(0)(“fields”)(“summary”)

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.