The REST API in question requires three parameters for authentication, a user Id, a password, and an applicationID. The item returned is a JSON Web Token (JWT). I have successfully defined a Login action with these parameters. But additional actions do not work because the JWT must be passed with "Bearer" prepended. In a number of other Power Apps I created, I used OAuth, and there was no issue, however in this app with a simple JWT being passed, the question becomes, which (if any) of the Security Authentication Types can be used? My initial though was to use API Key, however this has been unsuccessful. I also thought about using No authentication and simply use the PowerApps UI to make all of the calls, storing the JWT, however, this doesn't seem to be optimal to me.