GET user/list?page={page}&pageSize={pageSize}
Used to get the user list in your Private Media Channel.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
page |
This absorbs information from the page that is called. |
integer |
Default value is 0 |
pageSize |
This denotes the size of the aforementioned page. |
integer |
Default value is 10 |
Body Parameters
None.
Response Information
Resource Description
The user’s information is gathered here from your Private Media Channel.
UserListResponseName | Description | Type | Additional information |
---|---|---|---|
UserList | Collection of UserEntity |
None. |
Response Formats
application/json, text/json
Sample:
{ "UserList": [ { "UserID": 1, "HashKey": "sample string 2", "FullName": "sample string 3", "EmailAddress": "sample string 4", "RoleTitle": "sample string 5", "PicturePath": "sample string 6", "CreatedOn": "sample string 7" }, { "UserID": 1, "HashKey": "sample string 2", "FullName": "sample string 3", "EmailAddress": "sample string 4", "RoleTitle": "sample string 5", "PicturePath": "sample string 6", "CreatedOn": "sample string 7" } ] }
application/xml, text/xml
Sample:
<UserListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.nichevid.com.Models"> <UserList> <UserEntity> <CreatedOn>sample string 7</CreatedOn> <EmailAddress>sample string 4</EmailAddress> <FullName>sample string 3</FullName> <HashKey>sample string 2</HashKey> <PicturePath>sample string 6</PicturePath> <RoleTitle>sample string 5</RoleTitle> <UserID>1</UserID> </UserEntity> <UserEntity> <CreatedOn>sample string 7</CreatedOn> <EmailAddress>sample string 4</EmailAddress> <FullName>sample string 3</FullName> <HashKey>sample string 2</HashKey> <PicturePath>sample string 6</PicturePath> <RoleTitle>sample string 5</RoleTitle> <UserID>1</UserID> </UserEntity> </UserList> </UserListResponse>