Hi,
Most of my Alteryx projects involve APIs. Go out, get an OAuth Token, make API call and do work.
Much of the APIs require a batch macro where I feed in information to API, get results, call API, get results, and so on...
I want to make the request for an OAuth once and use that same Bearer Token throughout the lifecycle of the workflow. So, I'm making the OAuth request, saving that token to a file, then I enter the batch macro where thousands of API calls are made, and each time, the Authorization token is required read in from the document where it was initially saved.
PROBLEM:
Rather than reference the saved Authorization token from a document, it is possible to save it to memory and reference it from memory for each API call? I know it's reading the document each time because the log file indicates such.
Thanks for any assistance,
Chris