api-conventions.asciidoc 22 KB

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