
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
JIRA REST
i am trying to download all fields including Custom from JIRA
i created REST connection
using with connection
WITH CONNECTION(Url "https://productsup.atlassian.net/rest/api/3/issue/85473",
//WITH CONNECTION(Url "https://productsup.atlassian.net/rest/api/3/issue/$(vFileName)",
QUERY "Authorization" "$(vAuthorization)" );
if i use variable it is not working , it is working fine with out variable
Error:
(Connector error: HTTP protocol error 405 (Method Not Allowed):)
i also tried HTTPHEADERS "Authorization" "$(vAuthorization)" );
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is the value of the variable IssueKeyTable in this code?
LET vFileName = Peek('IssueID',$(i),'$(IssueKeyTable)');
Try changing this line to:
LET vFileName = Peek('IssueID',$(i),'IssueKeyTable');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is the content of $(vFileName)?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @steeefan i am glad you saw my post
below my script ,
loop is not repeated first run i saw value in $(vFileName) , but send time i saw blank

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does your table IssueKeyTable actually exist or is the data maybe automatically concatenated to the table loaded before that? What is the result of this code, placed right after the IssueKeyTable LOAD:
vDebug = NoOfRows('IssueKeyTable');
TRACE Rows in IssueKeyTable: $(vDebug);
EXIT SCRIPT;

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @steeefan
this is loop results and for second record it is not placing any value it BLANK
trace is showing blank for second record, but have 3 records

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is the value of the variable IssueKeyTable in this code?
LET vFileName = Peek('IssueID',$(i),'$(IssueKeyTable)');
Try changing this line to:
LET vFileName = Peek('IssueID',$(i),'IssueKeyTable');

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i really surprise why i use $ for table thank you 👀
