Set Basic Auth
On this page
You can send request using basic auth as well, basic auth need two things.
username
and password
request:
basicAuth:
username: me
password: mypassword
Example
name: Basic Auth
stages:
- name: request with basic auth
request:
url: "https://httpbin.org/get"
method: GET
basicAuth:
username: me
password: mypassword