The API I’m accessing is OAuth 2.0 and requires that I get a token every 24 hours, then use that token in another API call to get the info I need. I have the API call setup to get the token working fine use the settings of Use as Data which I assumed saved it somewhere, but I don’t see where to access it. How do I schedule getting this token and store it so I can use it for my other API call?
The JSON returned from the call to get the token also contains how many seconds the token is good for. So I’m assuming I can build a backend workflow schedule somehow that gets a new token if the current one is expired and replaces it in the DB and then somehow use that entry to make the other call.

