Data360 Analyze

 View Only
  • 1.  Using Data3sixty to GET JIRA API jSON information

    Posted 02-13-2019 15:30

                 The Rest API to JIRA using the https and the right URL does not authenticate and I have the below error.

    Can you let me know if I have to change the way of accessing the JIRA API?

     

    But In the other hand the jira API through the postman works fine.

    So can you define how it has to be configured in data3sixty analyze?

                 

     

     

     

     

     

     



  • 2.  RE: Using Data3sixty to GET JIRA API jSON information

    Employee
    Posted 02-15-2019 16:46

    The following works for calling JIRA REST API's:

    1. Get your Jira API Token (https://id.atlassian.com/manage/api-tokens)

    2. Base64 Encode your email address:api_token  The following example is using python. 

         Python example:

         import base64

         out1.Base64EncodedString = base64.b64encode("email:api_token".encode('utf-8'))

    3. In the HTTP Node, put the following in the header property:

         Authorization: Basic <value from step #2 above>

    4. Run the HTTP node with your URL and then connect a JSON node to read the response

    It should look like this when you are done:



  • 3.  RE: Using Data3sixty to GET JIRA API jSON information

    Posted 02-20-2019 10:42

    Thanks for the information.

     

    Is this the same process for the JIRA on premise implementation also?

    We are working with atlasssion JIRA which is configured on premise for our organization



  • 4.  RE: Using Data3sixty to GET JIRA API jSON information

    Employee
    Posted 02-20-2019 11:04

    I would assume so if the API's are the same.  I do not have an on-premise implementation to test with.  Of course, the endpoint would change.