[[reference-async_search-get]] //////// =========================================================================================================================== || || || || || || || ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ || || ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ || || ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ || || ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ || || ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ || || ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ || || || || || || This file is autogenerated, DO NOT send pull requests that changes this file directly. || || You should update the script that does the generation, which can be found in: || || https://github.com/elastic/elastic-client-generator-js || || || || You can run the script with the following command: || || npm run elasticsearch -- --version || || || || || || || =========================================================================================================================== //////// [discrete] [[client.asyncSearch.get]] === client.asyncSearch.get Get async search results. Retrieve the results of a previously submitted asynchronous search request. If the Elasticsearch security features are enabled, access to the results of a specific async search is restricted to the user or API key that submitted it. {ref}/async-search.html[{es} documentation] [discrete] ==== Function signature [source,ts] ---- (AsyncSearchGetRequest, options?): Promise ---- [discrete] ==== Request [pass] ++++
++++
interface AsyncSearchGetRequest extends <> {
  id: <>
  keep_alive?: <>
  typed_keys?: boolean
  wait_for_completion_timeout?: <>
}

[pass]
++++
++++ [discrete] ==== Response [pass] ++++
++++
type AsyncSearchGetResponse>, <>>> = <>

[pass]
++++
++++