SP.UserCollection object
Represents a collection of SP.User object.
Last modified: March 09, 2015
Applies to: apps for SharePoint | SharePoint Foundation 2013 | SharePoint Server 2013
var object = new SP.UserCollection()
The UserCollection object has the following members.
Constructor
The UserCollection object has the following constructor.
|
Constructor |
Description |
|---|---|
|
This member is reserved for internal use and is not intended to be used directly from your code. |
Methods
The UserCollection object has the following methods.
|
Method |
Description |
|---|---|
|
Adds the user specified by the user creation information parameter to the collection. |
|
|
Adds the specified user to the collection. |
|
|
Gets the user with the specified email address. |
|
|
Gets the user with the specified member identifier (ID). |
|
|
Gets the user with the specified login name. |
|
|
Gets the user at the specified index of the collection. |
|
|
Removes the specified user from the collection. |
|
|
Removes the user with the specified ID. |
|
|
Removes the user with the specified login name. |
Properties
The UserCollection object has the following properties.
|
Property |
Description |
|---|---|
|
|
|
|
Gets the user at the specified index of the collection. |
The following example creates an input button on an application page that adds the current user to the visitors group on the current Web site.
<asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server"> <script type="text/ecmascript" language="ecmascript"> var user; var visitorsGroup; function runCode() { var clientContext = new SP.ClientContext(); var groupCollection = clientContext.get_web().get_siteGroups(); // Get the visitors group, assuming its ID is 4. visitorsGroup = groupCollection.getById(4); user = clientContext.get_web().get_currentUser(); var userCollection = visitorsGroup.get_users(); userCollection.addUser(user); clientContext.load(user); clientContext.load(visitorsGroup); clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed)); } function onQuerySucceeded() { alert(user.get_title() + " added to group " + visitorsGroup.get_title()); } function onQueryFailed(sender, args) { alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace()); } </script> <input id="Button1" type="button" value="Run Code" onclick="runCode()" /> </asp:Content>
See UserCollection resource for more information.
Endpoint URI structure
http://<sitecollection>/<site>/_api/web/sitegroups(groupid)/users