Delete runtime field APIedit
[preview] This functionality is in technical preview and may be changed or removed in a future release. Elastic will apply best effort to fix any issues, but features in technical preview are not subject to the support SLA of official GA features. Delete a runtime field from a data view.
Requestedit
DELETE <kibana host>:<port>/api/data_views/data_view/<data_view_id>/runtime_field/<name>
DELETE <kibana host>:<port>/s/<space_id>/api/data_views/data_view/<data_view_id>/runtime_field/<name>
Path parametersedit
-
space_id
-
(Optional, string) An identifier for the space. If
space_id
is not provided in the URL, the default space is used. -
data_view_id
- (Required, string) The ID of the data view your want to delete a runtime field from.
-
name
- (Required, string) The name of the runtime field you want to delete.
Exampleedit
Delete a runtime field from a data view:
$ curl -X DELETE api/data_views/data_view/<my-view>/runtime_field/<runtime-field-name>