GET
/api/security/role/{name}
curl \
--request GET 'https://localhost:5601/api/security/role/{name}' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"name": "my_kibana_role",
"description": "Grants all cluster privileges and full access to index1 and index2. Grants full access to remote_index1 and remote_index2, and the monitor_enrich cluster privilege on remote_cluster1. Grants all Kibana privileges in the default space.",
"metadata": {
"version": 1
},
"transient_metadata": {
"enabled": true
},
"elasticsearch": {
"cluster": [
"all"
],
"remote_cluster": [
{
"privileges": [
"monitor_enrich"
],
"clusters": [
"remote_cluster1"
]
}
],
"indices": [
{
"names": [
"index1",
"index2"
],
"privileges": [
"all"
],
"allow_restricted_indices": false
}
],
"remote_indices": [
{
"names": [
"remote_index1",
"remote_index2"
],
"privileges": [
"all"
],
"allow_restricted_indices": false,
"clusters": [
"remote_cluster1"
]
}
],
"run_as": []
},
"kibana": [
{
"base": [
"all"
],
"feature": {},
"spaces": [
"default"
]
}
],
"_transform_error": [],
"_unrecognized_applications": []
}