Basic Authentication

We will take the postman API example , you can consult the docs of postman api : https://www.postman.com/postman/workspace/postman-public-workspace/documentation/

Authentication

We need to select the type as basic auth and then fill the username and password field . then this authentication will be used in a connector that will encode the username and the password on base64

postman authentication

You can test to authentication with any request to the postman api. by sending a request to :

GET : https://postman-echo.com/basic-auth
The result is a json with a TRUE value in case of correct authentication .