Create a service account token
Create a service accounts token for access without requiring basic authentication.
Path parameters
-
An identifier for the namespace
-
An identifier for the service name
Query parameters
-
refresh string
If
true
then refresh the affected shards to make this operation visible to search, ifwait_for
(the default) 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/service/{namespace}/{service}/credential/token
curl \
-X POST http://api.example.com/_security/service/{namespace}/{service}/credential/token
Response examples (200)
{
"created": true,
"token": {
"name": "string",
"value": "string"
}
}