mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
* initial pass at changing urls and anchors * update api.asciidoc * upate a few more anchor tags * upate a few more anchor tags * update data view api docs * Update delete.asciidoc * Update default-get.asciidoc * add redirects * fix redirects * remove duplicate redirect Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
41 lines
1 KiB
Text
41 lines
1 KiB
Text
[[data-views-api-delete]]
|
|
=== Delete data view API
|
|
++++
|
|
<titleabbrev>Delete data view</titleabbrev>
|
|
++++
|
|
|
|
experimental[] Delete data views.
|
|
|
|
WARNING: Once you delete a data view, _it cannot be recovered_.
|
|
|
|
[[data-views-api-delete-request]]
|
|
==== Request
|
|
|
|
`DELETE <kibana host>:<port>/api/index_patterns/index_pattern/<id>`
|
|
|
|
`DELETE <kibana host>:<port>/s/<space_id>/api/index_patterns/index_pattern/<id>`
|
|
|
|
[[data-views-api-delete-path-params]]
|
|
==== Path parameters
|
|
|
|
`space_id`::
|
|
(Optional, string) An identifier for the space. If `space_id` is not provided in the URL, the default space is used.
|
|
|
|
`id`::
|
|
(Required, string) The ID of the data view you want to delete.
|
|
|
|
[[data-views-api-delete-response-codes]]
|
|
==== Response code
|
|
|
|
`200`::
|
|
Indicates that data view is deleted. Returns an empty response body.
|
|
|
|
==== Example
|
|
|
|
Delete a data view object with the `my-pattern` ID:
|
|
|
|
[source,sh]
|
|
--------------------------------------------------
|
|
$ curl -X DELETE api/index_patterns/index_pattern/my-pattern
|
|
--------------------------------------------------
|
|
// KIBANA
|