GET /staged_config/access/user_roles
Get the list of staged user roles available in the system.
Get the list of staged user roles available in the system. The ADMIN or SAASADMIN capabilities are required to call this endpoint. If called by a user or authorized service with the ADMIN capability, all staged user roles will be returned. If called by a user or authorized service with the SAASADMIN capability, all staged user roles without the ADMIN capability will be returned.
| MIME Type |
|---|
application/json |
| Parameter | Type | Optionality | Data Type | MIME Type | Description |
|---|---|---|---|---|---|
contains |
query |
Optional |
String |
text/plain |
If this parameter is provided, the endpoint will return all user roles associated with domains that are linked. |
Range |
header |
Optional |
String |
text/plain |
Optional - Use this parameter to restrict the number of elements that are returned in the list to a specified range. The list is indexed starting at zero. |
filter |
query |
Optional |
String |
text/plain |
Optional - This parameter is used to restrict the elements in a list base on the contents of various fields. |
fields |
query |
Optional |
String |
text/plain |
Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas. |
| HTTP Response Code | Unique Code | Description |
|---|---|---|
200 |
A list of the deployed user roles. |
|
500 |
1020 |
An unexpected error has occurred. |
Response Description
- id - Long - The ID of the User Role. The ID of the staged and the ID of the same staged user are the same.
- name - String - The name of the User Role.
- capabilities - Array of Capabilities - The user role's capabilities
- application_id - Integer - The application ID of the capability, for example 25 is the Event Viewer.
- name - String - The name of the capability.
- description - String - A description of the capability.
Response Sample
[
{
"capabilities": [
{
"application_id": 42,
"description": "String",
"name": "String"
}
],
"id": 42,
"name": "String"
}
]