Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Deeplog
Contributor
Contributor

Rest connection "DYNAMIC" post method

Hi everyone,

I connect to jira with the rest connection post method and open an jira issue via sense app. I can use variable in the script and change the rest api body part, but user will enter a value with the input box and I should use this value in the body part of the rest connenction.

Can user run api call with a button on the front screen.

current script:

LET vRequestBody =.... 

LIB CONNECT TO 'jira_post ';

RestConnectorMasterTable:
SQL SELECT
"id",
"key",
"self"
FROM JSON (wrap on) "root"
WITH CONNECTION(
BODY "$(vRequestBody)"
);

//there will be a user variable (from input box) in vRequestBody

Labels (2)
0 Replies