Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i am trying to download data from JIRA
user REST connection
My URL
i use basic authentication
below is my script
I copied your code and used it with my JIRA connector. I believe the issue to be that you did not enclose your JIRA key in single quotes:
Not working:
WITH PROPERTIES (issueIdOrKey=$(vFileName));
Should work:
WITH PROPERTIES (issueIdOrKey='$(vFileName)');
Looks like you are missing a comma between comment" and HTTPHEADER. Have you tried this?
Hi thank you for responding
i miss that , i run with , now i see different error
(Connector error: The remote server returned an error: (404) Not Found.)
i am not sure whether we can use this URL in connection are any default REST URL for creating connection?
REST URL
https://productsup.atlassian.net/rest/api/3/issue/30711/comment
Either it's a wrong URL or no comment exists for that issue.
Which version of Qlik Sense are you using? Have you tried the integrated Jira connector?
That will probably be much easier to handle then creating the REST handler yourself.
Hi @steeefan i am using latest version of Qlik SaaS
the URL i am using is fetching data in postman also in Qlik if i don't use
WITH CONNECTION(Url "https://productsup.atlassian.net/rest/api/3/issue/$(vFileName)/comment",
HTTPHEADER "Authorization" "$(vAuthorization)" );
i need to repeat this for each issues , this vFileName variable will help me getting different issues
latest script
error :
(Connector error: The remote server returned an error: (404) Not Found.)
Does your script fail for each issue or just one or a few?
i use similar process to download data from absorb,personio, zuora
only jira i am getting this issue
Does your script fail for each JIRA issue or just one, a few?
My guess is that for the issues where your script fails, these do not have any comments. Do you think that could be true? Place TRACE $(vFileName); into the loop and see where it fails.