api-conventions.asciidoc 22 KB

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