Skip to main content

Notifications

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

 

  • TonyKankus Profile Picture
    TonyKankus 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?

  • bblake8480 Profile Picture
    bblake8480 642 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.

  • IonutT Profile Picture
    IonutT 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

  • prateesh85 Profile Picture
    prateesh85 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.

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

Microsoft Kickstarter Events…

Register for Microsoft Kickstarter Events…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Announcing Forum Attachment Improvements!

We're excited to announce that attachments for replies in forums and improved…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 145,666

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,996

Leaderboard

Featured topics