Create a service account token
Create a service accounts token for access without requiring basic authentication.
NOTE: Service account tokens never expire. You must actively delete them if they are no longer needed.
Path parameters
-
The name of the namespace, which is a top-level grouping of service accounts.
-
The name of the service.
POST
/_security/service/{namespace}/{service}/credential/token
Console
POST /_security/service/elastic/fleet-server/credential/token/token1
curl \
--request POST 'http://api.example.com/_security/service/{namespace}/{service}/credential/token' \
--header "Authorization: $API_KEY"
Response examples (200)
A successful response from `POST /_security/service/elastic/fleet-server/credential/token/token1`. The response includes the service account token, its name, and its secret value as a bearer token.
{
"created": true,
"token": {
"name": "token1",
"value": "AAEAAWVsYXN0aWM...vZmxlZXQtc2VydmVyL3Rva2VuMTo3TFdaSDZ"
}
}