-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extra attrs not added #12
Comments
@jkester1986 can you post the full request? |
I don't have my original code anymore, but I did try running with your readme Example 1, modified for my own settings:
The SOAP xml that's created ends up looking like this:
But it should actually look like this:
I was able to figure out the actual user object structure, which should look like this:
So, it turns out it's not that the function doesn't work, it's that the user object in Example 1 needs to be updated |
also, apologies for everything appearing on one line in the code chunks, I had them separated out but github is ignoring all the new lines for some reason? I don't know if there's a way to fix that, but would love to clean it up |
@jkester1986 your object structure works perfectly, thank you! |
When I have my user object as something like this:
{ name: req.body.email, password: 'test1234', givenName: req.body.fName, sn: req.body.lName, mobile: req.body.mobile, title: req.body.designation, uid: req.body.uid }
only the name/pw is added to the new user's account. The otehr attributes are just ignored.
Am running Zimbra 8.8.6_GA
The text was updated successfully, but these errors were encountered: