api-conventions.asciidoc 22 KB

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