I would like to use the Appian "Create JIRA Issue" plugin...is there a

I would like to use the Appian "Create JIRA Issue" plugin...is there any documentation around the plugin? Has anyone used it successfully?

Thanks is advance for any help.

OriginalPostID-220809

OriginalPostID-220809

  Discussion posts and replies are publicly visible

Parents
  • Hi lesliec,

    There are no plug-ins available in Appian for JIRA integration. Where as we can easily consume JIRA REST API's. the documentation is here . docs.atlassian.com/.../

    I have tried calling JIRA API's in Appian for our project purpose for fetching the JIRA issue details.

    Below is the code snippet you may refer.

    a!httpQuery(

    url: "https://<JIRA Instance>/rest/agile/1.0/issue/<JIRA ISSUE>",
    method: "GET",
    headers:a!httpHeader(
    name:"Authorization",
    value:a!scsField(
    externalSystemKey:"xxx",
    fieldKey:"xxx")
    )
    )

    This is a GET operation where as for Creating issue you may need to use POST opearation and the REST API URL could be : https://<JIRA Instance>/rest/agile/1.0/issue/<JIRA ISSUE>
Reply
  • Hi lesliec,

    There are no plug-ins available in Appian for JIRA integration. Where as we can easily consume JIRA REST API's. the documentation is here . docs.atlassian.com/.../

    I have tried calling JIRA API's in Appian for our project purpose for fetching the JIRA issue details.

    Below is the code snippet you may refer.

    a!httpQuery(

    url: "https://<JIRA Instance>/rest/agile/1.0/issue/<JIRA ISSUE>",
    method: "GET",
    headers:a!httpHeader(
    name:"Authorization",
    value:a!scsField(
    externalSystemKey:"xxx",
    fieldKey:"xxx")
    )
    )

    This is a GET operation where as for Creating issue you may need to use POST opearation and the REST API URL could be : https://<JIRA Instance>/rest/agile/1.0/issue/<JIRA ISSUE>
Children
No Data