Hi all,
I have a scheduled workflow that I am currently triggering manually for testing. It is a simple Workflow that will hit only one ISC endpoint via an HTTP Operation action. What I’m running into right now is an HTTP 401 “JWT is required” error. I have my one HTTP Operation configured to use OAuth2 client credentials grant flow. My token URL is: https://.api.identitynow.com/oauth/token, my clientId and clientSecret are validated to work via Postman. My credential location is header, my scope is blank, my request headers are “Accept”: “application/json”.
Is there any additional configuration needed for this? I thought the bearer token would get generated and passed after hitting the OAuth endpoint into my request headers automatically. Do I need to reference the token or prep the headers with “Authentication”: “Bearer” or anything like this?
Also worth noting is I have tried setting my token URL to https://.api.identitynow.com/oauth/token?grant_type=client_credentials and this also did not work.