New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v3/roles/{userRoleId}/users
Returns the users assigned to the role with the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userRoleId |
The role ID. | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of User
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Specifies the user identifier. | string |
None. |
| Username |
Specifies the username of the user. | string |
None. |
| FirstName |
Specifies the first name of the user. | string |
None. |
| LastName |
Specifies the last name of the user. | string |
None. |
|
Specifies the email of the user. | string |
None. | |
| Enabled |
Specifies whether the user is enabled or not. | boolean |
None. |
Response Formats
application/json
json
[
{
"Id": "caae99ce5d3",
"Username": "jane.doe",
"FirstName": "John",
"LastName": "Garcia",
"Email": "alex.johnson@example.com",
"Enabled": true
},
{
"Id": "9f6178da1c9",
"Username": "maria.garcia",
"FirstName": "Alex",
"LastName": "Doe",
"Email": "john.smith@example.com",
"Enabled": true
}
]