Bearer Token
Last updated
Use this method when the external API expects a bearer token in the authorization header.
Nected sends your token with each request in this format:
Authorization: Bearer <token>Provider docs explicitly require Authorization: Bearer ...
You receive a token from a provider and do not need interactive OAuth authorization
Header: fixed to Authorization (not editable)
Token: raw token value
Start from either location:
Path A: Go to Security > Authorization and click + New Authentication.
Path B: Open the REST API connector configuration sidebar and click Create Authentication from the Authentication dropdown.
Select Bearer Token.
Enter Token (header stays fixed as Authorization).
Save the auth configuration.
Attach/select this configuration in your external API integration call.
Execute a test call and verify HTTP success code.
Request contains header Authorization with Bearer <token>.
No extra spaces/newlines in token.
Target endpoint receives the header.
Store token in secure secret storage; never hardcode in source.
Rotate token if exposed or periodically per policy.
Use HTTPS only.
401 Unauthorized: token invalid/expired. Regenerate and update config.
Header missing at provider: verify proxies/gateways do not strip Authorization.
Need a custom header key: Bearer Token does not support changing header name. Use API Key auth if provider requires a non-Authorization header.
Wrong prefix: ensure format is Bearer <token>.
Last updated