Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
CarolinedeVos
Contributor
Contributor

Token as variable to use in second REST connector

Hi,

I have connected Act-On and Qlik via the RESt connector. First I get a token through the POST method. This token changes every hour and needs to be used in a REST connector with the GET method. I can enter the token hardcoded in the GET method. But I want to use it as a variable, so I don't have to change it every time. I have created the variable $actonToken. I found a case in the community (https://community.qlik.com/t5/Connectivity-Data-Prep/REST-connector-with-automatic-date-update/m-p/1...), but can't get it to work for me. Can someone help me out with this?

-----

This is the input in Data Load Editor.

Let vActonToken = 'Bearer $(actonToken)';

LIB CONNECT TO 'REST Act-On list';

RestConnectorMasterTable:
SQL SELECT
"listId",
"offset",
"count",
"totalCount",
"emailColumn",
"__KEY_root",
(SELECT
"@Value",
"__FK_headers"
FROM "headers" FK "__FK_headers" ArrayValueAlias "@Value"),
(SELECT
"__KEY_data",
"__FK_data",
(SELECT
"@Value" AS "@Value_u0",
"__FK_data_u0"
FROM "data" FK "__FK_data_u0" ArrayValueAlias "@Value_u0")
FROM "data" PK "__KEY_data" FK "__FK_data")
FROM JSON (wrap on) "root" PK "__KEY_root"
WITH CONNECTION (
QUERY"Authorization" $(vActonToken));

Labels (2)
0 Replies