Issue in connecting to make.com API

Hello everyone,

I’m trying to call make.com api through HTTP module to activate/deactivate scenarios, but I’m getting the response in screenshot “Access denied” although the API key is correct and all scopes are enabled for it.

I used

Hi Alex33, it looks like you forgot to add “Token ” to the api key parameter

Like this:

Authorization: Token 12345678-12ef-abcd-1234-xxxxxxxx

Hi Jonathan, indeed the Token is added, it’s just cropped from the screenshot

Is the keyword Token + space “Token ” added? Because I’m not seeing it

2 Likes

Thanks bro, that helped me!

You’re welcome. Can you market it as a solution?

1 Like

One step that would make it a little simpler (and more secure) …

You can use the Make an API Call module in any app to access API endpoints that aren’t available as modules.

Using that route means you don’t need to worry about authentication, as it uses the same Connection that you’ve established already. And that also means that you don’t need to put the API Key in plain text, making it more secure.

1 Like