Authorization for Breezeway API

Hi @Jorge_Conde - Unfortunately that API doesn’t look like it’s directly compatible with any of our authentication methods. They use a pattern that is somewhat similar to OAuth2, but not close enough to work with our implementation.

I think you could try to use Custom authentication, like this:

  1. Setup Custom authentication, with parameters for the client ID and secret.
  2. At the start of every execute function in your Pack, make a request to get a new token using the client ID and secret.
  3. Use the access token in the remainder of the execute function to authenticate requests.

This approach could run into issues however if the API invalidates old tokens when creating new ones, as Coda formulas can be run simultaneously. It’s worth a shot though!