Hello,
I’m trying to do the following authenticate using the post method instructed here - Authenticate with username and password (automationanywhere.com)
And while the following works:
{
"username": "your-domain\\jdoe",
"password": "mypassword@123"
}
I want to use my credential variables from my locker instead but that throws up an error:
{
"username": "DOMAIN\\$TEST(Username)$",
"password": "$TEST(Password)$"
}
The resulting error is - {"code":"UM1110","details":"This may be due to a misspelling or because your Caps Lock is on. To continue, please retype your username and password.","message":"Either your domain or your username or your password is incorrect"}
I would like to make it so that it’d be able to run no matter who is using it (so $$User$(Username)$) but at the moment I can’t even seem to get it to retrieve the Username correctly from the vault. Is there any way to assign it dynamically?