IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete roles API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Delete roles API
editRemoves roles in the native realm.
Request
editDELETE /_security/role/<name>
Description
editThe Roles API is generally the preferred way to manage roles, rather than using file-based role management. For more information about the native realm, see Realms and Configuring a native realm.
Path Parameters
edit-
name
- (string) The name of the role.
Authorization
editTo use this API, you must have at least the manage_security
cluster
privilege.
Examples
editThe following example deletes a my_admin_role
role:
DELETE /_security/role/my_admin_role
If the role is successfully deleted, the request returns {"found": true}
.
Otherwise, found
is set to false.
{ "found" : true }
Was this helpful?
Thank you for your feedback.