Authentication
// This is an example of basic authentication
const credentials = $data.UserName + ":" + $data.Password;
const base64EncodedCredentials = btoa(credentials);
const authHeader = `Basic ${base64EncodedCredentials}`;
return [
{ Key: "Authorization", Value: authHeader }
];Last updated