[role="xpack"] [[security-api-create-api-key]] === Create API key API ++++ Create API keys ++++ 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 is an API key, the derived API key cannot have any privileges. If you specify privileges, the API returns an error. See the note under <>. [[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 <>. A successful request returns a JSON structure that contains the API key, its unique id, and its name. If applicable, it also returns expiration information for the API key in milliseconds. NOTE: By default, API keys never expire. You can specify expiration information when you create the API keys. See <> for configuration settings related to API key service. [[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, array-of-role-descriptor) An array of role descriptors for this API key. 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 the authenticated user_. If you supply role descriptors then the resultant permissions would be an intersection of API keys permissions and authenticated user's permissions thereby limiting the access scope for API keys. The structure of role descriptor is the same as the request for create role API. For more details, see <>. + -- NOTE: Due to the way in which this permission intersection is calculated, it is not possible to create an API key that is a child of another API key, unless the derived key is created without any privileges. In this case, you must explicitly specify a role descriptor with no privileges. The derived API key can be used for authentication; it will not have authority to call {es} APIs. -- `expiration`:: (Optional, string) Expiration time for the API key. By default, API keys never expire. `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 for system 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"], "index": [ { "names": ["index-a*"], "privileges": ["read"] } ] }, "role-b": { "cluster": ["all"], "index": [ { "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 provides API 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-8 representation of the `id` and `api_key` joined by a colon (`:`). To use the generated API key, send a request with an `Authorization` header that contains 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 you must specify `https` when creating your API key On a Unix-like system, the `encoded` value can be created with the following command: [[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 newline character