-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathclear_scroll.json
41 lines (41 loc) · 1.16 KB
/
clear_scroll.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
{
"clear_scroll": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html",
"description": "Explicitly clears the search context for a scroll."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json", "text/plain"]
},
"url": {
"paths": [
{
"path": "/_search/scroll",
"methods": ["DELETE"]
},
{
"path": "/_search/scroll/{scroll_id}",
"methods": ["DELETE"],
"parts": {
"scroll_id": {
"type": "list",
"description": "A comma-separated list of scroll IDs to clear",
"deprecated": true
}
},
"deprecated": {
"version": "7.0.0",
"description": "A scroll id can be quite large and should be specified as part of the body"
}
}
]
},
"params": {},
"body": {
"description": "A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter"
}
}
}