Community Tip - You can change your system assigned username to something more personal in your community settings. X
Hello,
I have to create multiple user by using mashup field and save that user in thingworx user list and in particular user group.
Can Someone please let me know the update for the same.
Thanks in advance,
Riya
Solved! Go to Solution.
In Service creation page, you will find a snippet for CreateUser under EntityServices. You could call this upon button click to create a user and use this article to add the user to the required usergroup.
In Service creation page, you will find a snippet for CreateUser under EntityServices. You could call this upon button click to create a user and use this article to add the user to the required usergroup.
Thanks for your response
I have a similar doubt,
How do I assign project to user through a ThingWorx service?
You can use SetProjectName service as below:
Users["MyUser"].SetProjectName({
projectName: "MyProjectName" /* PROJECTNAME */
});