Disable users
Generally available
Disable users in the native realm. By default, when you create users, they are enabled. You can use this API to revoke a user's access to Elasticsearch.
Required authorization
- Cluster privileges:
manage_security
Path parameters
-
username
string Required An identifier for the user.
Query parameters
-
refresh
string If
true
(the default) then refresh the affected shards to make this operation visible to search, ifwait_for
then wait for a refresh to make this operation visible to search, iffalse
then do nothing with refreshes.Values are
true
,false
, orwait_for
.
POST
/_security/user/{username}/_disable
Console
PUT /_security/user/jacknich/_disable
resp = client.security.disable_user(
username="jacknich",
)
const response = await client.security.disableUser({
username: "jacknich",
});
response = client.security.disable_user(
username: "jacknich"
)
$resp = $client->security()->disableUser([
"username" => "jacknich",
]);
curl -X PUT -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_security/user/jacknich/_disable"