I'm trying to set up the HTTP app to access the CIsco Secure Endpoint API (v3). I've generated the access token following the instructions found here. I can send a curl request in POSTMAN, using the access token, to get organisation details. So I know the access token is ok: curl -s 'https://api.amp.cisco.com/v3/organizations?size=10' \
--header "Authorization: Bearer eyJhbGciOiJ....." When I enter the same value in the access_token field in the HTTP app and test connectivity, I always receive the following error status code: error 401 Data from server: {"errors":["Missing token"]} I'm not sure what to enter for the Type of Authentication Token, so maybe that's where I'm messing it up. I think it should be Bearer, because that's the only thing in POSTMAN header other than the token itself. Note that I haven't entered anything in any of the other authentication fields (username, password, url, Client ID, Client Secret). And also - I get the same error if I don't enter anything in the access token field. Basically, it's just ignored.
... View more