Ldap authentication

Hi.
Im trying to get works ldap authentication in react-admin app with ra-data-parse backend.
Point me please, how to fill authData. There is user id parameter - which ldap attribute it uses (samaccountname)?
My code in authProvider AUTH_LOGIN:
const myAuthData = {
“id”: username,
“password”: password
}
const user = new Parse.User();
await user.linkWith(‘ldap’, { authData: myAuthData }).then( async function(user) {
}, function(error){
console.log(error);
throw Error(“Wrong username / password”);
});

You can see some test cases here. I don’t know so much about ldap but I believe it is the uid attribute as peer the test cases.