Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
My Data source is Anaplan via API and I am using REST connector.
First, I already generated a Token and assign it to the variable with name vToken
using https://auth.anaplan.com/token/authenticate and Basic Auth using Username and Password
here's the initial query for that:
now my problem is how I can assign the vToken dynamically to the next API connection (GET) to
load the data since the API connection is embedded to REST connector,
here's my 2nd script to load the data
I'm thinking how to have a custom connection or by pass the initial connection:
to insert the $(vToken) in query headers generated from initial query at the top
Hi @djbaclay23 you can use WITH CONNECTION property for passing custom values for URL, BODY, QUERY PARAMS and HEADERS. Here an example for replacing the URL and here all the info on this property.
Hi @djbaclay23 you can use WITH CONNECTION property for passing custom values for URL, BODY, QUERY PARAMS and HEADERS. Here an example for replacing the URL and here all the info on this property.
it works!
Thank you