IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Delete application privileges API
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Delete application privileges API
editRemoves application privileges.
Request
editDELETE /_security/privilege/<application>/<privilege>
Path Parameters
edit-
application
(required) - (string) The name of the application. Application privileges are always associated with exactly one application.
-
privilege
(required) - (string) The name of the privilege.
Authorization
editTo use this API, you must have either:
-
the
manage_security
cluster privilege (or a greater privilege such asall
); or - the "Manage Application Privileges" global privilege for the application being referenced in the request
Examples
editThe following example deletes the read
application privilege from the
myapp
application:
DELETE /_security/privilege/myapp/read
If the role is successfully deleted, the request returns {"found": true}
.
Otherwise, found
is set to false.
{ "myapp": { "read": { "found" : true } } }
Was this helpful?
Thank you for your feedback.