our requirement is to connect UiPath to Jira cloud for x ray migration.
is UiPath to Jira cloud connectivity is possible?
we are not using orchestrator.
if yes without orchestrator, then how? could you please give me some steps and documents which are available to refer.
Yes — UiPath can connect to Jira Cloud without Orchestrator.
You can do it directly from UiPath Studio using Jira activity packages that authenticate with Jira Cloud API tokens.
Community guidance confirms API token usage is supported directly inside UiPath Studio, even without Orchestrator. [forum.uipath.com]
Step 3 — Create Jira Connection in UiPath Studio
Use the Jira Application Scope activity (available in marketplace packages).
Inside Jira Scope, set:
Property
Value
Server URL
https://<your-domain>.atlassian.net
Authentication Type
API Token
Username
Jira Cloud email
Password
API Token (as SecureString)
Example (from the community thread):
UiPath users authenticate by passing the API Token as a secure string to Jira Scope without Orchestrator. [forum.uipath.com]
Step 4 — Use Jira Activities to Perform Operations
UiPath offers activities such as:
Create Issue
Get Issue
Search Issues with JQL
Update Issue
Add Comment
Attach files
Many of these are listed in Atlassian Community describing Jira automation with UiPath. [community…assian.com]
ok, you are asking from Jira end right.
so for now i am just checking the feasibility, is it possible or not.
i need to confirm regarding Jira test set how team is executing and i will confirm
Yes, it is possible to connect UiPath Studio to Jira Cloud for Xray migration without using Orchestrator. Here are the main approaches:
UiPath Jira Activity Packages – Install packages like UiPath.Jira.IntegrationService.Activities or Jira Software Integration from the Marketplace. They allow you to create, update, and query Jira issues directly in Studio using your Jira Cloud API token.
Invoke HTTP Request / Jira REST API – For Xray-specific operations (tests, executions, plans), you can call Jira and Xray REST API endpoints directly from Studio using the HTTP Request activity, authenticating with your API token.
Marketplace Connectors – UiPath Marketplace offers prebuilt Jira integration workflows that can be adapted for Xray migration and other Jira operations.
Hybrid Approach – Combine Jira activity packages for standard operations with HTTP requests for Xray endpoints to maximize flexibility without Orchestrator.
Custom Scripts – For bulk migration or complex JSON handling, you can create Python or other scripts interacting with Jira/Xray APIs and invoke them from UiPath Studio.