Delete service account tokens Generally available; Added in 5.5.0

DELETE /_security/service/{namespace}/{service}/credential/token/{name}

Delete service account tokens for a service in a specified namespace.

Required authorization

  • Cluster privileges: manage_service_account
External documentation

Path parameters

  • namespace string Required

    The namespace, which is a top-level grouping of service accounts.

  • service string Required

    The service name.

  • name string Required

    The name of the service account token.

Query parameters

  • refresh string

    If true then refresh the affected shards to make this operation visible to search, if wait_for (the default) then wait for a refresh to make this operation visible to search, if false then do nothing with refreshes.

    Values are true, false, or wait_for.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • found boolean Required

      If the service account token is successfully deleted, the request returns {"found": true}. Otherwise, the response will have status code 404 and found is set to false.

DELETE /_security/service/{namespace}/{service}/credential/token/{name}
DELETE /_security/service/elastic/fleet-server/credential/token/token42 
resp = client.security.delete_service_token( namespace="elastic", service="fleet-server", name="token42", )
const response = await client.security.deleteServiceToken({ namespace: "elastic", service: "fleet-server", name: "token42", });
response = client.security.delete_service_token( namespace: "elastic", service: "fleet-server", name: "token42" )
$resp = $client->security()->deleteServiceToken([ "namespace" => "elastic", "service" => "fleet-server", "name" => "token42", ]);
curl -X DELETE -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_security/service/elastic/fleet-server/credential/token/token42"
Response examples (200)
A successful response from `DELETE /_security/service/elastic/fleet-server/credential/token/token42`.
{ "found" : true }