Hi, we are using mulesoft to sync data from salesf...
# integrations
s
Hi, we are using mulesoft to sync data from salesforce to netsuite. For authentication in netsuite we are using oauth 2.0. Auth code. When access token expires we receive no access token found error and then we manually authorize the app again and it works. Is there any way to get the new access token without going to consent form? Thanks
j
We’re also using Mulesoft (for a different integration purpose). What I did was create a custom record type to store the ‘current token’, and then wrote a Scheduled Script that runs every half an hour to refresh the token.
when I need to use it I just retrieve the current value from my custom record.
s
Ok