Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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