97 lines
2.2 KiB
Plaintext
97 lines
2.2 KiB
Plaintext
[role="xpack"]
|
|
[[security-api-get-role]]
|
|
=== Get roles API
|
|
++++
|
|
<titleabbrev>Get roles</titleabbrev>
|
|
++++
|
|
|
|
Retrieves roles in the native realm.
|
|
|
|
[[security-api-get-role-request]]
|
|
==== {api-request-title}
|
|
|
|
`GET /_security/role` +
|
|
|
|
`GET /_security/role/<name>` +
|
|
|
|
[[security-api-get-role-prereqs]]
|
|
==== {api-prereq-title}
|
|
|
|
* To use this API, you must have at least the `manage_security` cluster
|
|
privilege.
|
|
|
|
[[security-api-get-role-desc]]
|
|
==== {api-description-title}
|
|
|
|
For more information about the native realm, see
|
|
{stack-ov}/realms.html[Realms] and <<configuring-native-realm>>.
|
|
|
|
[[security-api-get-role-path-params]]
|
|
==== {api-path-parms-title}
|
|
|
|
`name`::
|
|
(Optional, string) The name of the role. You can specify multiple roles as a
|
|
comma-separated list. If you do not specify this parameter, the API
|
|
returns information about all roles.
|
|
|
|
[[security-api-get-role-response-body]]
|
|
==== {api-response-body-title}
|
|
|
|
A successful call returns an array of roles with the JSON representation of the
|
|
role.
|
|
|
|
[[security-api-get-role-response-codes]]
|
|
==== {api-response-codes-title}
|
|
|
|
If the role is not defined in the native realm, the request returns 404.
|
|
|
|
[[security-api-get-role-example]]
|
|
==== {api-examples-title}
|
|
|
|
The following example retrieves information about the `my_admin_role` role in
|
|
the native realm:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
GET /_security/role/my_admin_role
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[setup:admin_role]
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"my_admin_role": {
|
|
"cluster" : [ "all" ],
|
|
"indices" : [
|
|
{
|
|
"names" : [ "index1", "index2" ],
|
|
"privileges" : [ "all" ],
|
|
"allow_restricted_indices" : false,
|
|
"field_security" : {
|
|
"grant" : [ "title", "body" ]}
|
|
}
|
|
],
|
|
"applications" : [ ],
|
|
"run_as" : [ "other_user" ],
|
|
"metadata" : {
|
|
"version" : 1
|
|
},
|
|
"transient_metadata": {
|
|
"enabled": true
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
// TESTRESPONSE
|
|
|
|
To retrieve all roles, omit the role name:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
GET /_security/role
|
|
--------------------------------------------------
|
|
// CONSOLE
|
|
// TEST[continued]
|
|
|