Delete users
Generally available
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
.
DELETE
/_security/user/{username}
Console
DELETE /_security/user/jacknich
resp = client.security.delete_user(
username="jacknich",
)
const response = await client.security.deleteUser({
username: "jacknich",
});
response = client.security.delete_user(
username: "jacknich"
)
$resp = $client->security()->deleteUser([
"username" => "jacknich",
]);
curl -X DELETE -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_security/user/jacknich"
Response examples (200)
A successful response from `DELETE /_security/user/jacknich`.
{
"found" : true
}