[role="xpack"] [[security-api-get-user-privileges]] === Get user privileges API ++++ Get user privileges ++++ Retrieves the <> for the logged in user. [[security-api-get-user-privileges-request]] ==== {api-request-title} `GET /_security/user/_privileges` [[security-api-get-user-privileges-prereqs]] ==== {api-prereq-title} * All users can use this API, but only to determine their own privileges. To check the privileges of other users, you must use the run as feature. For more information, see <>. [[security-api-get-user-privileges-desc]] ==== {api-description-title} To check whether a user has a specific list of privileges, use the <>. [[security-api-get-user-privileges-example]] ==== {api-examples-title} [source,console] -------------------------------------------------- GET /_security/user/_privileges -------------------------------------------------- [source,console-result] -------------------------------------------------- { "cluster" : [ "all" ], "global" : [ ], "indices" : [ { "names" : [ "*" ], "privileges" : [ "all" ], "allow_restricted_indices" : true } ], "applications" : [ { "application" : "*", "privileges" : [ "*" ], "resources" : [ "*" ] } ], "run_as" : [ "*" ] } -------------------------------------------------- // TESTRESPONSE[s/: false/: true/]