-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathasync_search.get.json
41 lines (41 loc) · 1.21 KB
/
async_search.get.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"async_search.get": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html",
"description": "Retrieves the results of a previously submitted async search request given its ID."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
},
"url": {
"paths": [
{
"path": "/_async_search/{id}",
"methods": ["GET"],
"parts": {
"id": {
"type": "string",
"description": "The async search ID"
}
}
}
]
},
"params": {
"wait_for_completion_timeout": {
"type": "time",
"description": "Specify the time that the request should block waiting for the final response"
},
"keep_alive": {
"type": "time",
"description": "Specify the time interval in which the results (partial or final) for this search will be available"
},
"typed_keys": {
"type": "boolean",
"description": "Specify whether aggregation and suggester names should be prefixed by their respective types in the response"
}
}
}
}