| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 | [role="xpack"][[security-api-create-api-key]]=== Create API key API++++<titleabbrev>Create API keys</titleabbrev>++++Creates an API key for access without requiring basic authentication.[[security-api-create-api-key-request]]==== {api-request-title}`POST /_security/api_key``PUT /_security/api_key`[[security-api-create-api-key-prereqs]]==== {api-prereq-title}* To use this API, you must have at least the `manage_own_api_key` cluster privilege.IMPORTANT: If the credential that is used to authenticate this request isan API key, the derived API key cannot have any privileges. If you specify privileges, the API returns an error.See the note under <<api-key-role-descriptors,`role_descriptors`>>.[[security-api-create-api-key-desc]]==== {api-description-title}The API keys are created by the {es} API key service, which is automatically enabled.For instructions on disabling the API key service, see <<api-key-service-settings>>.A successful request returns a JSON structure that contains theAPI key, its unique id, and its name. If applicable, it also returns expirationinformation for the API key in milliseconds.NOTE: By default, API keys never expire. You can specify expiration informationwhen you create the API keys.See <<api-key-service-settings>> for configuration settings related to API keyservice.[[security-api-create-api-key-request-body]]==== {api-request-body-title}The following parameters can be specified in the body of a POST or PUT request:`name`::(Required, string) Specifies the name for this API key.[[api-key-role-descriptors]]`role_descriptors`::(Optional, object) The role descriptors for this APIkey. This parameter is optional. When it is not specified or is an empty array,then the API key will have a _point in time snapshot of permissions of theauthenticated user_. If you supply role descriptors then the resultant permissionswould be an intersection of API keys permissions and authenticated user's permissionsthereby limiting the access scope for API keys.+--NOTE: Due to the way in which this permission intersection is calculated, it is notpossible to create an API key that is a child of another API key, unless the derivedkey is created without any privileges. In this case, you must explicitly specify arole descriptor with no privileges. The derived API key can be used forauthentication; it will not have authority to call {es} APIs.--+`applications`::: (list) A list of application privilege entries.`application` (required):::: (string) The name of the application to which this entry applies`privileges` (required):::: (list) A list of strings, where each element is the name of an applicationprivilege or action.`resources` (required):::: (list) A list resources to which the privileges are applied.`cluster`::: (list) A list of cluster privileges. These privileges define thecluster level actions that API keys are able to execute.`global`::: (object) An object defining global privileges. A global privilege isa form of cluster privilege that is request-aware. Support for global privilegesis currently limited to the management of application privileges.This field is optional.`indices`::: (list) A list of indices permissions entries.`field_security`:::: (object) The document fields that the API keys haveread access to. For more information, see<<field-and-document-access-control>>.`names` (required):::: (list) A list of indices (or index name patterns) to which thepermissions in this entry apply.`privileges`(required):::: (list) The index level privileges that the API keyshave on the specified indices.`query`:::: A search query that defines the documents the API keys haveread access to. A document within the specified indices must match this query inorder for it to be accessible by the API keys.`metadata`::: (object) Optional meta-data. Within the `metadata` object, keysthat begin with `_` are reserved for system usage.`restriction`::: (object) Optional restriction for when the role descriptor is allowed to be effective. For more information, see<<role-restriction>>.`workflows`:::: (list) A list of workflows to which the API key is restricted.For a full list see <<workflows-restriction>>.+--NOTE: In order to use role restriction, an API key must be created with a *single role descriptor*.--+`run_as`::: (list) A list of users that the API keys can impersonate.For more information, see<<run-as-privilege>>.`expiration`::(Optional, string) Expiration time for the API key. By default, API keys neverexpire.`metadata`::(Optional, object) Arbitrary metadata that you want to associate with the API key.It supports nested data structure.Within the `metadata` object, keys beginning with `_` are reserved forsystem usage.[[security-api-create-api-key-example]]==== {api-examples-title}The following example creates an API key:[source,console]----POST /_security/api_key{  "name": "my-api-key",  "expiration": "1d",   <1>  "role_descriptors": { <2>    "role-a": {      "cluster": ["all"],      "indices": [        {          "names": ["index-a*"],          "privileges": ["read"]        }      ]    },    "role-b": {      "cluster": ["all"],      "indices": [        {          "names": ["index-b*"],          "privileges": ["all"]        }      ]    }  },  "metadata": {    "application": "my-application",    "environment": {       "level": 1,       "trusted": true,       "tags": ["dev", "staging"]    }  }}----<1> Optional expiration for the API key being generated. If expiration is not provided then the API keys do not expire.<2> Optional role descriptors for this API key. If not provided, permissions of the authenticated user are applied.A successful call returns a JSON structure that providesAPI key information.[source,console-result]----{  "id": "VuaCfGcBCdbkQm-e5aOx",        <1>  "name": "my-api-key",  "expiration": 1544068612110,         <2>  "api_key": "ui2lp2axTNmsyakw9tvNnw", <3>  "encoded": "VnVhQ2ZHY0JDZGJrUW0tZTVhT3g6dWkybHAyYXhUTm1zeWFrdzl0dk5udw=="  <4>}----// TESTRESPONSE[s/VuaCfGcBCdbkQm-e5aOx/$body.id/]// TESTRESPONSE[s/1544068612110/$body.expiration/]// TESTRESPONSE[s/ui2lp2axTNmsyakw9tvNnw/$body.api_key/]// TESTRESPONSE[s/VnVhQ2ZHY0JDZGJrUW0tZTVhT3g6dWkybHAyYXhUTm1zeWFrdzl0dk5udw==/$body.encoded/]<1> Unique `id` for this API key<2> Optional expiration in milliseconds for this API key<3> Generated API key<4> API key credentials which is the Base64-encoding of the UTF-8representation of the `id` and `api_key` joined by a colon (`:`).To use the generated API key, send a request with an `Authorization` header thatcontains an `ApiKey` prefix followed by the API key credentials(the `encoded` value from the response).[source,shell]----curl -H "Authorization: ApiKey VnVhQ2ZHY0JDZGJrUW0tZTVhT3g6dWkybHAyYXhUTm1zeWFrdzl0dk5udw==" \http://localhost:9200/_cluster/health\?pretty <1>----// NOTCONSOLE<1> If your node has `xpack.security.http.ssl.enabled` set to `true`, then youmust specify `https` when creating your API keyOn a Unix-like system, the `encoded` value can be created with the followingcommand:[[concat-api-key]][source,shell]----echo -n "VuaCfGcBCdbkQm-e5aOx:ui2lp2axTNmsyakw9tvNnw" | base64 <1>----<1> Use `-n` so that the `echo` command doesn't print the trailing newlinecharacter//tag::create-api-key-with-role-restriction-example[]The following example creates an API key with a <<role-restriction, restriction>> to the `search_application_query` workflow,which allows to call only <<search-application-search, Search Application Search API>>:[source,console]----POST /_security/api_key{  "name": "my-restricted-api-key",  "role_descriptors": {    "my-restricted-role-descriptor": {      "indices": [        {          "names": ["my-search-app"],          "privileges": ["read"]        }      ],      "restriction":  {        "workflows": ["search_application_query"]      }    }  }}----//end::create-api-key-with-role-restriction-example[]
 |