Basic Auth
Last updated
Use this method when the external API requires a username and password in the HTTP authorization header.
Nected encodes username:password using Base64 and sends:
Authorization: Basic <base64(username:password)>Legacy APIs only support Basic Authentication
Internal trusted systems still rely on username/password credentials
Username
Password

Start from either location:
Path A: Navigate 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 Basic Auth.
Enter Username and Password.
Save configuration.
Attach/select this authentication in the integration/API request step.
Run test requests and confirm provider response.
Username/password are current and active.
Target endpoint expects Basic Auth for this route.
Request is sent over HTTPS.
Always use HTTPS; Basic Auth is not safe over plain HTTP.
Keep credentials scoped to least privilege.
Replace with OAuth/API key where possible for stronger controls.
401 Unauthorized: username/password mismatch.
Credentials accepted locally but not in Nected: verify escaped/special characters.
Frequent failures: password rotation not updated in Nected config.
Last updated