Solved
How to add user in organization using JavaScript?
I want to add users, user-groups in an organization using java script service so that I can do it this at my custom mashup for my customer. How can I do this? Appricate a quick help.
I want to add users, user-groups in an organization using java script service so that I can do it this at my custom mashup for my customer. How can I do this? Appricate a quick help.
Hi Tushar, you can use the existing service AddMember, something like this
var params = {
name: undefined /* STRING */,
member: undefined /* STRING */,
type: undefined /* STRING */
};
// this will add member to the Everyone org
// no return
Organizations["Everyone"].AddMember(params);
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.