I have set up a Web Service Connection to an external endpoint to retrieve an access token. I selected "Basic authentication", filled in the Client ID and Secret as username and password, and in my actual request body I used the grant_type "refresh_token" which worked successfully.
I want to set up some calls that use that access token. In Postman, I just set the Auth Type to Bearer Token and fill in the token from the first call. But this is not a choice in Laserfiche.
My choices are "No authentication", "Basic authentication" (username and password), and "OAuth 2.0 authentication" whose only choices are Client Credentials (which forces grant_type to client_credentials) or Resource Owner Password Credentials (which forces grant_type to password).
How can I use my access token to make some API calls?
Thanks,