api-conventions.asciidoc 22 KB

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