I have a Throttle tool passing records at the rate of 100 records per minute to a download tool which uses an Auth token expiring in 10 mins. If the number of download records to be called exceeds 1000 then the time taken will more than Token lifespan, resulting in 401 error status. This will be unnecessarily lead to n number of calls with invalid token
I want to add this condition so the download tool stops accepting records once 401 status occurs and in the output has 2 streams - One for non 401 responses and all others which will need a new token
P.S. I do not want to create a separate macro for this if possible