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