Get role mappings Added in 5.5.0
Role mappings define which roles are assigned to each user. The role mapping APIs are generally the preferred way to manage role mappings rather than using role mapping files. The get role mappings API cannot retrieve role mappings that are defined in role mapping files.
Path parameters
-
The distinct name that identifies the role mapping. The name is used solely as an identifier to facilitate interaction via the API; it does not affect the behavior of the mapping in any way. You can specify multiple mapping names as a comma-separated list. If you do not specify this parameter, the API returns information about all role mappings.
GET /_security/role_mapping/{name}
curl \
-X GET http://api.example.com/_security/role_mapping/{name}
Response examples (200)
{
"additionalProperty1": {
"enabled": true,
"metadata": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"roles": [
"string"
],
"role_templates": [
{
"format": "string",
"template": {
"source": "string",
"id": "string",
"params": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"": "painless",
"options": {
"additionalProperty1": "string",
"additionalProperty2": "string"
}
}
}
],
"rules": {
"any": [
{}
],
"all": [
{}
],
"field": {
"username": "string",
"dn": "string",
"groups": "string"
},
"except": {}
}
},
"additionalProperty2": {
"enabled": true,
"metadata": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"roles": [
"string"
],
"role_templates": [
{
"format": "string",
"template": {
"source": "string",
"id": "string",
"params": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"": "painless",
"options": {
"additionalProperty1": "string",
"additionalProperty2": "string"
}
}
}
],
"rules": {
"any": [
{}
],
"all": [
{}
],
"field": {
"username": "string",
"dn": "string",
"groups": "string"
},
"except": {}
}
}
}