web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Power Automate - Using Connectors
Unanswered

JIRA connector - Create a new issue (V3) - doesn't work

(2) ShareShare
ReportReport
Posted on by 6

I am trying to create a simple flow which creates a new issue whenever it receives input. 


This is the error i am getting
IonutT_0-1709304438331.png

This is the prompt i get when creating step. 

IonutT_1-1709304617526.png



I don't see any other fields where i can add for example the text i am writing in the previous step



I was looking online  - and found this but i don't see the ITEM field on my side

IonutT_2-1709304773209.png

 

I have the same question (0)
  • prateesh85 Profile Picture
    2 on at
    Re: JIRA connector - Create a new issue (V3) - doesn't work

    Hi, 

    I was facing a similar issue with the Jira Connector for Power Apps, especially with the CreateIssueV3 operation. There is so little documentation available and hence I thought it might be useful for someone facing a similar issue. Finally after 2 days of banging heads, I was able to resolve it with the following approach: 

     

    On button -> OnSelect -> 

    UpdateContext(
        {
            item:
            {
                fields: {
                    components: [{name: "<Your component name defined in JIRA>"}],
                    summary: "Test Story: Added via Power App.",
                    description: "Test Story: Added via Power App. Adding a dummy description to this issue.",
                    issuetype: {name: "Story"},
                    priority: {name: "None"},
                    parent: {key: "<Parent Issue Key>"},
                    project: {id: "<Project Id>"}
                }
            }
        }
    );
     
    ClearCollect(
        varNewIssue,
        Jira.CreateIssueV3(
            "<Project key>",
            "<Issue Type Id>",
            "https://<domain>.atlassian.net",
            {item:ParseJSON(JSON(item))}
        )
    );
     
    Using the above code I was able to successfully create an issue of type: "Story" under an EPIC.
  • IonutT Profile Picture
    6 on at
    Re: JIRA connector - Create a new issue (V3) - doesn't work

    Can i ask where were you able to add this? I don't seem to have any option to add this anywhere

  • Barret Profile Picture
    652 Most Valuable Professional on at
    Re: JIRA connector - Create a new issue (V3) - doesn't work

    I don't think you can add the code @prateesh85 suggested in Power Automate, only in Power Apps. There used to be a space you could add Item in that Create action for Jira, but it's been a year or two since I worked with it and it appears to be gone now. I don't think you can use it as it is currently. Definitely seems to be a bug.

  • TonyKankus Profile Picture
    10 on at
    Re: JIRA connector - Create a new issue (V3) - doesn't work

    I tried your code in PowerApps and I get this error which prevents the whole function running. 

    TonyKankus_0-1718373901132.png

     

    Would really love it to work in PowerApps - any ideas?

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Coming soon: forum hierarchy changes

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Tomac Profile Picture

Tomac 532 Moderator

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 461 Super User 2025 Season 2

#3
chiaraalina Profile Picture

chiaraalina 256

Last 30 days Overall leaderboard

Featured topics