api-conventions.asciidoc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712
  1. [[api-conventions]]
  2. == API conventions
  3. The {es} REST APIs are exposed over HTTP.
  4. The conventions listed in this chapter can be applied throughout the REST
  5. API, unless otherwise specified.
  6. * <<multi-index>>
  7. * <<date-math-index-names>>
  8. * <<cron-expressions>>
  9. * <<common-options>>
  10. * <<url-access-control>>
  11. [[multi-index]]
  12. === Multi-target syntax
  13. Most APIs that accept a `<data-stream>`, `<index>`, or `<target>` request path
  14. parameter also support _multi-target syntax_.
  15. In multi-target syntax, you can use a comma-separated list to run a request on
  16. multiple resources, such as data streams, indices, or aliases:
  17. `test1,test2,test3`. You can also use {wikipedia}/Glob_(programming)[glob-like]
  18. wildcard (`*`) expressions to target resources that match a pattern: `test*` or
  19. `*test` or `te*t` or `*test*`.
  20. You can exclude targets using the `-` character: `test*,-test3`.
  21. IMPORTANT: Aliases are resolved after wildcard expressions. This can result in a
  22. request that targets an excluded alias. For example, if `test3` is an index
  23. alias, the pattern `test*,-test3` still targets the indices for `test3`. To
  24. avoid this, exclude the concrete indices for the alias instead.
  25. Multi-target APIs that can target indices support the following query
  26. string parameters:
  27. include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=index-ignore-unavailable]
  28. include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=allow-no-indices]
  29. include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=expand-wildcards]
  30. The defaults settings for the above parameters depend on the API being used.
  31. Some multi-target APIs that can target indices also support the following query
  32. string parameter:
  33. include::{es-repo-dir}/rest-api/common-parms.asciidoc[tag=ignore_throttled]
  34. NOTE: APIs with a single target, such as the <<docs-get,get document API>>, do
  35. not support multi-target syntax.
  36. [[hidden]]
  37. ==== Hidden data streams and indices
  38. For most APIs, wildcard expressions do not match hidden data streams and indices
  39. by default. To match hidden data streams and indices using a wildcard
  40. expression, you must specify the `expand_wildcards` query parameter.
  41. You can create hidden data streams by setting `data_stream.hidden` to `true` in
  42. the stream's matching <<indices-put-template,index template>>. You can hide
  43. indices using the <<index-hidden,`index.hidden`>> index setting.
  44. The backing indices for data streams are hidden automatically. Some features,
  45. such as {ml}, store information in hidden indices.
  46. Global index templates that match all indices are not applied to hidden indices.
  47. [[system-indices]]
  48. ==== System indices
  49. {es} modules and plugins can store configuration and state information in internal _system indices_.
  50. You should not directly access or modify system indices
  51. as they contain data essential to the operation of the system.
  52. IMPORTANT: Direct access to system indices is deprecated and
  53. will no longer be allowed in the next major version.
  54. [[date-math-index-names]]
  55. === Date math support in index and index alias names
  56. Date math name resolution lets you to search a range of time series indices or
  57. index aliases rather than searching all of your indices and filtering the
  58. results. Limiting the number of searched indices reduces cluster load and
  59. improves search performance. For example, if you are searching for errors in
  60. your daily logs, you can use a date math name template to restrict the search to
  61. the past two days.
  62. Most APIs that accept an index or index alias argument support date math. A date
  63. math name takes the following form:
  64. [source,txt]
  65. ----------------------------------------------------------------------
  66. <static_name{date_math_expr{date_format|time_zone}}>
  67. ----------------------------------------------------------------------
  68. Where:
  69. [horizontal]
  70. `static_name`:: Static text
  71. `date_math_expr`:: Dynamic date math expression that computes the date dynamically
  72. `date_format`:: Optional format in which the computed date should be rendered. Defaults to `yyyy.MM.dd`. Format should be compatible with java-time https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html
  73. `time_zone`:: Optional time zone. Defaults to `UTC`.
  74. NOTE: Pay attention to the usage of small vs capital letters used in the `date_format`. For example:
  75. `mm` denotes minute of hour, while `MM` denotes month of year. Similarly `hh` denotes the hour in the
  76. `1-12` range in combination with `AM/PM`, while `HH` denotes the hour in the `0-23` 24-hour range.
  77. Date math expressions are resolved locale-independent. Consequently, it is not possible to use any other
  78. calendars than the Gregorian calendar.
  79. You must enclose date math names in angle brackets. If you use the name in a
  80. request path, special characters must be URI encoded. For example:
  81. [source,console]
  82. ----
  83. # PUT /<my-index-{now/d}>
  84. PUT /%3Cmy-index-%7Bnow%2Fd%7D%3E
  85. ----
  86. [NOTE]
  87. .Percent encoding of date math characters
  88. ======================================================
  89. The special characters used for date rounding must be URI encoded as follows:
  90. [horizontal]
  91. `<`:: `%3C`
  92. `>`:: `%3E`
  93. `/`:: `%2F`
  94. `{`:: `%7B`
  95. `}`:: `%7D`
  96. `|`:: `%7C`
  97. `+`:: `%2B`
  98. `:`:: `%3A`
  99. `,`:: `%2C`
  100. ======================================================
  101. The following example shows different forms of date math names and the final names
  102. they resolve to given the current time is 22nd March 2024 noon UTC.
  103. [options="header"]
  104. |======
  105. | Expression |Resolves to
  106. | `<logstash-{now/d}>` | `logstash-2024.03.22`
  107. | `<logstash-{now/M}>` | `logstash-2024.03.01`
  108. | `<logstash-{now/M{yyyy.MM}}>` | `logstash-2024.03`
  109. | `<logstash-{now/M-1M{yyyy.MM}}>` | `logstash-2024.02`
  110. | `<logstash-{now/d{yyyy.MM.dd\|+12:00}}>` | `logstash-2024.03.23`
  111. |======
  112. To use the characters `{` and `}` in the static part of a name template, escape them
  113. with a backslash `\`, for example:
  114. * `<elastic\\{ON\\}-{now/M}>` resolves to `elastic{ON}-2024.03.01`
  115. The following example shows a search request that searches the Logstash indices for the past
  116. three days, assuming the indices use the default Logstash index name format,
  117. `logstash-YYYY.MM.dd`.
  118. [source,console]
  119. ----------------------------------------------------------------------
  120. # GET /<logstash-{now/d-2d}>,<logstash-{now/d-1d}>,<logstash-{now/d}>/_search
  121. GET /%3Clogstash-%7Bnow%2Fd-2d%7D%3E%2C%3Clogstash-%7Bnow%2Fd-1d%7D%3E%2C%3Clogstash-%7Bnow%2Fd%7D%3E/_search
  122. {
  123. "query" : {
  124. "match": {
  125. "test": "data"
  126. }
  127. }
  128. }
  129. ----------------------------------------------------------------------
  130. // TEST[s/^/PUT logstash-2016.09.20\nPUT logstash-2016.09.19\nPUT logstash-2016.09.18\n/]
  131. // TEST[s/now/2016.09.20%7C%7C/]
  132. include::rest-api/cron-expressions.asciidoc[]
  133. [[common-options]]
  134. === Common options
  135. The following options can be applied to all of the REST APIs.
  136. [discrete]
  137. ==== Pretty Results
  138. When appending `?pretty=true` to any request made, the JSON returned
  139. will be pretty formatted (use it for debugging only!). Another option is
  140. to set `?format=yaml` which will cause the result to be returned in the
  141. (sometimes) more readable yaml format.
  142. [discrete]
  143. ==== Human readable output
  144. Statistics are returned in a format suitable for humans
  145. (e.g. `"exists_time": "1h"` or `"size": "1kb"`) and for computers
  146. (e.g. `"exists_time_in_millis": 3600000` or `"size_in_bytes": 1024`).
  147. The human readable values can be turned off by adding `?human=false`
  148. to the query string. This makes sense when the stats results are
  149. being consumed by a monitoring tool, rather than intended for human
  150. consumption. The default for the `human` flag is
  151. `false`.
  152. [[date-math]]
  153. [discrete]
  154. ==== Date Math
  155. Most parameters which accept a formatted date value -- such as `gt` and `lt`
  156. in <<query-dsl-range-query,`range` queries>>, or `from` and `to`
  157. in <<search-aggregations-bucket-daterange-aggregation,`daterange`
  158. aggregations>> -- understand date maths.
  159. The expression starts with an anchor date, which can either be `now`, or a
  160. date string ending with `||`. This anchor date can optionally be followed by
  161. one or more maths expressions:
  162. * `+1h`: Add one hour
  163. * `-1d`: Subtract one day
  164. * `/d`: Round down to the nearest day
  165. The supported time units differ from those supported by <<time-units, time units>> for durations.
  166. The supported units are:
  167. [horizontal]
  168. `y`:: Years
  169. `M`:: Months
  170. `w`:: Weeks
  171. `d`:: Days
  172. `h`:: Hours
  173. `H`:: Hours
  174. `m`:: Minutes
  175. `s`:: Seconds
  176. Assuming `now` is `2001-01-01 12:00:00`, some examples are:
  177. [horizontal]
  178. `now+1h`:: `now` in milliseconds plus one hour. Resolves to: `2001-01-01 13:00:00`
  179. `now-1h`:: `now` in milliseconds minus one hour. Resolves to: `2001-01-01 11:00:00`
  180. `now-1h/d`:: `now` in milliseconds minus one hour, rounded down to UTC 00:00. Resolves to: `2001-01-01 00:00:00`
  181. `2001.02.01\|\|+1M/d`:: `2001-02-01` in milliseconds plus one month. Resolves to: `2001-03-01 00:00:00`
  182. [discrete]
  183. [[common-options-response-filtering]]
  184. ==== Response Filtering
  185. All REST APIs accept a `filter_path` parameter that can be used to reduce
  186. the response returned by Elasticsearch. This parameter takes a comma
  187. separated list of filters expressed with the dot notation:
  188. [source,console]
  189. --------------------------------------------------
  190. GET /_search?q=kimchy&filter_path=took,hits.hits._id,hits.hits._score
  191. --------------------------------------------------
  192. // TEST[setup:my_index]
  193. Responds:
  194. [source,console-result]
  195. --------------------------------------------------
  196. {
  197. "took" : 3,
  198. "hits" : {
  199. "hits" : [
  200. {
  201. "_id" : "0",
  202. "_score" : 1.6375021
  203. }
  204. ]
  205. }
  206. }
  207. --------------------------------------------------
  208. // TESTRESPONSE[s/"took" : 3/"took" : $body.took/]
  209. // TESTRESPONSE[s/1.6375021/$body.hits.hits.0._score/]
  210. It also supports the `*` wildcard character to match any field or part
  211. of a field's name:
  212. [source,console]
  213. --------------------------------------------------
  214. GET /_cluster/state?filter_path=metadata.indices.*.stat*
  215. --------------------------------------------------
  216. // TEST[s/^/PUT my-index-000001\n/]
  217. Responds:
  218. [source,console-result]
  219. --------------------------------------------------
  220. {
  221. "metadata" : {
  222. "indices" : {
  223. "my-index-000001": {"state": "open"}
  224. }
  225. }
  226. }
  227. --------------------------------------------------
  228. And the `**` wildcard can be used to include fields without knowing the
  229. exact path of the field. For example, we can return the Lucene version
  230. of every segment with this request:
  231. [source,console]
  232. --------------------------------------------------
  233. GET /_cluster/state?filter_path=routing_table.indices.**.state
  234. --------------------------------------------------
  235. // TEST[s/^/PUT my-index-000001\n/]
  236. Responds:
  237. [source,console-result]
  238. --------------------------------------------------
  239. {
  240. "routing_table": {
  241. "indices": {
  242. "my-index-000001": {
  243. "shards": {
  244. "0": [{"state": "STARTED"}, {"state": "UNASSIGNED"}]
  245. }
  246. }
  247. }
  248. }
  249. }
  250. --------------------------------------------------
  251. It is also possible to exclude one or more fields by prefixing the filter with the char `-`:
  252. [source,console]
  253. --------------------------------------------------
  254. GET /_count?filter_path=-_shards
  255. --------------------------------------------------
  256. // TEST[setup:my_index]
  257. Responds:
  258. [source,console-result]
  259. --------------------------------------------------
  260. {
  261. "count" : 5
  262. }
  263. --------------------------------------------------
  264. And for more control, both inclusive and exclusive filters can be combined in the same expression. In
  265. this case, the exclusive filters will be applied first and the result will be filtered again using the
  266. inclusive filters:
  267. [source,console]
  268. --------------------------------------------------
  269. GET /_cluster/state?filter_path=metadata.indices.*.state,-metadata.indices.logstash-*
  270. --------------------------------------------------
  271. // TEST[s/^/PUT my-index-000001\nPUT my-index-000002\nPUT my-index-000003\nPUT logstash-2016.01\n/]
  272. Responds:
  273. [source,console-result]
  274. --------------------------------------------------
  275. {
  276. "metadata" : {
  277. "indices" : {
  278. "my-index-000001" : {"state" : "open"},
  279. "my-index-000002" : {"state" : "open"},
  280. "my-index-000003" : {"state" : "open"}
  281. }
  282. }
  283. }
  284. --------------------------------------------------
  285. Note that Elasticsearch sometimes returns directly the raw value of a field,
  286. like the `_source` field. If you want to filter `_source` fields, you should
  287. consider combining the already existing `_source` parameter (see
  288. <<get-source-filtering,Get API>> for more details) with the `filter_path`
  289. parameter like this:
  290. [source,console]
  291. --------------------------------------------------
  292. POST /library/_doc?refresh
  293. {"title": "Book #1", "rating": 200.1}
  294. POST /library/_doc?refresh
  295. {"title": "Book #2", "rating": 1.7}
  296. POST /library/_doc?refresh
  297. {"title": "Book #3", "rating": 0.1}
  298. GET /_search?filter_path=hits.hits._source&_source=title&sort=rating:desc
  299. --------------------------------------------------
  300. [source,console-result]
  301. --------------------------------------------------
  302. {
  303. "hits" : {
  304. "hits" : [ {
  305. "_source":{"title":"Book #1"}
  306. }, {
  307. "_source":{"title":"Book #2"}
  308. }, {
  309. "_source":{"title":"Book #3"}
  310. } ]
  311. }
  312. }
  313. --------------------------------------------------
  314. [discrete]
  315. ==== Flat Settings
  316. The `flat_settings` flag affects rendering of the lists of settings. When the
  317. `flat_settings` flag is `true`, settings are returned in a flat format:
  318. [source,console]
  319. --------------------------------------------------
  320. GET my-index-000001/_settings?flat_settings=true
  321. --------------------------------------------------
  322. // TEST[setup:my_index]
  323. Returns:
  324. [source,console-result]
  325. --------------------------------------------------
  326. {
  327. "my-index-000001" : {
  328. "settings": {
  329. "index.number_of_replicas": "1",
  330. "index.number_of_shards": "1",
  331. "index.creation_date": "1474389951325",
  332. "index.uuid": "n6gzFZTgS664GUfx0Xrpjw",
  333. "index.version.created": ...,
  334. "index.routing.allocation.include._tier_preference" : "data_content",
  335. "index.provided_name" : "my-index-000001"
  336. }
  337. }
  338. }
  339. --------------------------------------------------
  340. // TESTRESPONSE[s/1474389951325/$body.my-index-000001.settings.index\\\\.creation_date/]
  341. // TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.my-index-000001.settings.index\\\\.uuid/]
  342. // TESTRESPONSE[s/"index.version.created": \.\.\./"index.version.created": $body.my-index-000001.settings.index\\\\.version\\\\.created/]
  343. When the `flat_settings` flag is `false`, settings are returned in a more
  344. human readable structured format:
  345. [source,console]
  346. --------------------------------------------------
  347. GET my-index-000001/_settings?flat_settings=false
  348. --------------------------------------------------
  349. // TEST[setup:my_index]
  350. Returns:
  351. [source,console-result]
  352. --------------------------------------------------
  353. {
  354. "my-index-000001" : {
  355. "settings" : {
  356. "index" : {
  357. "number_of_replicas": "1",
  358. "number_of_shards": "1",
  359. "creation_date": "1474389951325",
  360. "uuid": "n6gzFZTgS664GUfx0Xrpjw",
  361. "version": {
  362. "created": ...
  363. },
  364. "routing": {
  365. "allocation": {
  366. "include": {
  367. "_tier_preference": "data_content"
  368. }
  369. }
  370. },
  371. "provided_name" : "my-index-000001"
  372. }
  373. }
  374. }
  375. }
  376. --------------------------------------------------
  377. // TESTRESPONSE[s/1474389951325/$body.my-index-000001.settings.index.creation_date/]
  378. // TESTRESPONSE[s/n6gzFZTgS664GUfx0Xrpjw/$body.my-index-000001.settings.index.uuid/]
  379. // TESTRESPONSE[s/"created": \.\.\./"created": $body.my-index-000001.settings.index.version.created/]
  380. By default `flat_settings` is set to `false`.
  381. [discrete]
  382. [[api-conventions-parameters]]
  383. ==== Parameters
  384. Rest parameters (when using HTTP, map to HTTP URL parameters) follow the
  385. convention of using underscore casing.
  386. [discrete]
  387. ==== Boolean Values
  388. All REST API parameters (both request parameters and JSON body) support
  389. providing boolean "false" as the value `false` and boolean "true" as the
  390. value `true`. All other values will raise an error.
  391. [discrete]
  392. ==== Number Values
  393. All REST APIs support providing numbered parameters as `string` on top
  394. of supporting the native JSON number types.
  395. [[time-units]]
  396. [discrete]
  397. ==== Time units
  398. Whenever durations need to be specified, e.g. for a `timeout` parameter, the duration must specify
  399. the unit, like `2d` for 2 days. The supported units are:
  400. [horizontal]
  401. `d`:: Days
  402. `h`:: Hours
  403. `m`:: Minutes
  404. `s`:: Seconds
  405. `ms`:: Milliseconds
  406. `micros`:: Microseconds
  407. `nanos`:: Nanoseconds
  408. [[byte-units]]
  409. [discrete]
  410. ==== Byte size units
  411. Whenever the byte size of data needs to be specified, e.g. when setting a buffer size
  412. parameter, the value must specify the unit, like `10kb` for 10 kilobytes. Note that
  413. these units use powers of 1024, so `1kb` means 1024 bytes. The supported units are:
  414. [horizontal]
  415. `b`:: Bytes
  416. `kb`:: Kilobytes
  417. `mb`:: Megabytes
  418. `gb`:: Gigabytes
  419. `tb`:: Terabytes
  420. `pb`:: Petabytes
  421. [[size-units]]
  422. [discrete]
  423. ==== Unit-less quantities
  424. Unit-less quantities means that they don't have a "unit" like "bytes" or "Hertz" or "meter" or "long tonne".
  425. If one of these quantities is large we'll print it out like 10m for 10,000,000 or 7k for 7,000. We'll still print 87
  426. when we mean 87 though. These are the supported multipliers:
  427. [horizontal]
  428. `k`:: Kilo
  429. `m`:: Mega
  430. `g`:: Giga
  431. `t`:: Tera
  432. `p`:: Peta
  433. [[distance-units]]
  434. [discrete]
  435. ==== Distance Units
  436. Wherever distances need to be specified, such as the `distance` parameter in
  437. the <<query-dsl-geo-distance-query>>), the default unit is meters if none is specified.
  438. Distances can be specified in other units, such as `"1km"` or
  439. `"2mi"` (2 miles).
  440. The full list of units is listed below:
  441. [horizontal]
  442. Mile:: `mi` or `miles`
  443. Yard:: `yd` or `yards`
  444. Feet:: `ft` or `feet`
  445. Inch:: `in` or `inch`
  446. Kilometer:: `km` or `kilometers`
  447. Meter:: `m` or `meters`
  448. Centimeter:: `cm` or `centimeters`
  449. Millimeter:: `mm` or `millimeters`
  450. Nautical mile:: `NM`, `nmi`, or `nauticalmiles`
  451. [[fuzziness]]
  452. [discrete]
  453. ==== Fuzziness
  454. Some queries and APIs support parameters to allow inexact _fuzzy_ matching,
  455. using the `fuzziness` parameter.
  456. When querying `text` or `keyword` fields, `fuzziness` is interpreted as a
  457. {wikipedia}/Levenshtein_distance[Levenshtein Edit Distance]
  458. -- the number of one character changes that need to be made to one string to
  459. make it the same as another string.
  460. The `fuzziness` parameter can be specified as:
  461. [horizontal]
  462. `0`, `1`, `2`::
  463. The maximum allowed Levenshtein Edit Distance (or number of edits)
  464. `AUTO`::
  465. +
  466. --
  467. Generates an edit distance based on the length of the term.
  468. Low and high distance arguments may be optionally provided `AUTO:[low],[high]`. If not specified,
  469. the default values are 3 and 6, equivalent to `AUTO:3,6` that make for lengths:
  470. `0..2`:: Must match exactly
  471. `3..5`:: One edit allowed
  472. `>5`:: Two edits allowed
  473. `AUTO` should generally be the preferred value for `fuzziness`.
  474. --
  475. [discrete]
  476. [[common-options-error-options]]
  477. ==== Enabling stack traces
  478. By default when a request returns an error Elasticsearch doesn't include the
  479. stack trace of the error. You can enable that behavior by setting the
  480. `error_trace` url parameter to `true`. For example, by default when you send an
  481. invalid `size` parameter to the `_search` API:
  482. [source,console]
  483. ----------------------------------------------------------------------
  484. POST /my-index-000001/_search?size=surprise_me
  485. ----------------------------------------------------------------------
  486. // TEST[s/surprise_me/surprise_me&error_trace=false/ catch:bad_request]
  487. // Since the test system sends error_trace=true by default we have to override
  488. The response looks like:
  489. [source,console-result]
  490. ----------------------------------------------------------------------
  491. {
  492. "error" : {
  493. "root_cause" : [
  494. {
  495. "type" : "illegal_argument_exception",
  496. "reason" : "Failed to parse int parameter [size] with value [surprise_me]"
  497. }
  498. ],
  499. "type" : "illegal_argument_exception",
  500. "reason" : "Failed to parse int parameter [size] with value [surprise_me]",
  501. "caused_by" : {
  502. "type" : "number_format_exception",
  503. "reason" : "For input string: \"surprise_me\""
  504. }
  505. },
  506. "status" : 400
  507. }
  508. ----------------------------------------------------------------------
  509. But if you set `error_trace=true`:
  510. [source,console]
  511. ----------------------------------------------------------------------
  512. POST /my-index-000001/_search?size=surprise_me&error_trace=true
  513. ----------------------------------------------------------------------
  514. // TEST[catch:bad_request]
  515. The response looks like:
  516. [source,console-result]
  517. ----------------------------------------------------------------------
  518. {
  519. "error": {
  520. "root_cause": [
  521. {
  522. "type": "illegal_argument_exception",
  523. "reason": "Failed to parse int parameter [size] with value [surprise_me]",
  524. "stack_trace": "Failed to parse int parameter [size] with value [surprise_me]]; nested: IllegalArgumentException..."
  525. }
  526. ],
  527. "type": "illegal_argument_exception",
  528. "reason": "Failed to parse int parameter [size] with value [surprise_me]",
  529. "stack_trace": "java.lang.IllegalArgumentException: Failed to parse int parameter [size] with value [surprise_me]\n at org.elasticsearch.rest.RestRequest.paramAsInt(RestRequest.java:175)...",
  530. "caused_by": {
  531. "type": "number_format_exception",
  532. "reason": "For input string: \"surprise_me\"",
  533. "stack_trace": "java.lang.NumberFormatException: For input string: \"surprise_me\"\n at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)..."
  534. }
  535. },
  536. "status": 400
  537. }
  538. ----------------------------------------------------------------------
  539. // TESTRESPONSE[s/"stack_trace": "Failed to parse int parameter.+\.\.\."/"stack_trace": $body.error.root_cause.0.stack_trace/]
  540. // TESTRESPONSE[s/"stack_trace": "java.lang.IllegalArgum.+\.\.\."/"stack_trace": $body.error.stack_trace/]
  541. // TESTRESPONSE[s/"stack_trace": "java.lang.Number.+\.\.\."/"stack_trace": $body.error.caused_by.stack_trace/]
  542. [discrete]
  543. ==== Request body in query string
  544. For libraries that don't accept a request body for non-POST requests,
  545. you can pass the request body as the `source` query string parameter
  546. instead. When using this method, the `source_content_type` parameter
  547. should also be passed with a media type value that indicates the format
  548. of the source, such as `application/json`.
  549. [discrete]
  550. ==== Content-type requirements
  551. The type of the content sent in a request body must be specified using
  552. the `Content-Type` header. The value of this header must map to one of
  553. the supported formats that the API supports. Most APIs support JSON,
  554. YAML, CBOR, and SMILE. The bulk and multi-search APIs support NDJSON,
  555. JSON, and SMILE; other types will result in an error response.
  556. When using the `source` query string parameter, the content type must be
  557. specified using the `source_content_type` query string parameter.
  558. {es} only supports UTF-8-encoded JSON. {es} ignores any other encoding headings
  559. sent with a request. Responses are also UTF-8 encoded.
  560. [[url-access-control]]
  561. === URL-based access control
  562. Many users use a proxy with URL-based access control to secure access to
  563. {es} data streams and indices. For <<search-multi-search,multi-search>>,
  564. <<docs-multi-get,multi-get>>, and <<docs-bulk,bulk>> requests, the user has
  565. the choice of specifying a data stream or index in the URL and on each individual request
  566. within the request body. This can make URL-based access control challenging.
  567. To prevent the user from overriding the data stream or index specified in the
  568. URL, set `rest.action.multi.allow_explicit_index` to `false` in `elasticsearch.yml`.
  569. This causes {es} to
  570. reject requests that explicitly specify a data stream or index in the request body.