17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.security.grantApiKey({
|
|
grant_type: "password",
|
|
username: "test_admin",
|
|
password: "x-pack-test-password",
|
|
run_as: "test_user",
|
|
api_key: {
|
|
name: "another-api-key",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|